-- -- PostgreSQL database dump -- -- Dumped from database version 9.5.2 -- Dumped by pg_dump version 9.5.7 -- Started on 2017-06-12 15:59:16 BST SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; SET client_min_messages = warning; SET row_security = off; -- -- TOC entry 1 (class 3079 OID 12361) -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- -- TOC entry 2178 (class 0 OID 0) -- Dependencies: 1 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; SET search_path = public, pg_catalog; -- -- TOC entry 194 (class 1255 OID 16431) -- Name: getmidvalue(text); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION getmidvalue(msg text) RETURNS integer LANGUAGE plpgsql IMMUTABLE AS $$ DECLARE strresult integer; BEGIN strresult := 0; IF msg = '1 to 10' THEN strresult := 5; ELSIF msg = '11 to 20' THEN strresult := 15; ELSIF msg = '21 to 30' THEN strresult := 25; ELSIF msg = '31 to 40' THEN strresult := 35; ELSIF msg = '41 to 50' THEN strresult := 45; ELSIF msg = '51 to 100' THEN strresult := 75; ELSIF msg = '101 to 200' THEN strresult := 150; ELSIF msg = '201 to 500' THEN strresult := 350; ELSIF msg = '501 to 1000' THEN strresult := 750; ELSIF msg = '1001+' THEN strresult := 1000; ELSE strresult := 0; END IF; RETURN strresult; END; $$; ALTER FUNCTION public.getmidvalue(msg text) OWNER TO postgres; SET default_tablespace = ''; SET default_with_oids = false; -- -- TOC entry 193 (class 1259 OID 678507) -- Name: availablewaves; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE availablewaves ( "waveName" character varying, "timePeriod" character varying ); ALTER TABLE availablewaves OWNER TO postgres; -- -- TOC entry 192 (class 1259 OID 677194) -- Name: fields; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE fields ( code character varying, text character varying ); ALTER TABLE fields OWNER TO postgres; -- -- TOC entry 181 (class 1259 OID 16438) -- Name: fields_clean; Type: VIEW; Schema: public; Owner: postgres -- CREATE VIEW fields_clean AS SELECT fields.code, replace(replace((fields.text)::text, 'Number to'::text, 'Number -'::text), 'Proportion to'::text, 'Proportion -'::text) AS text FROM fields; ALTER TABLE fields_clean OWNER TO postgres; -- -- TOC entry 182 (class 1259 OID 16458) -- Name: questions; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE questions ( question_code character varying, question character varying ); ALTER TABLE questions OWNER TO postgres; -- -- TOC entry 183 (class 1259 OID 16464) -- Name: questions_clean; Type: VIEW; Schema: public; Owner: postgres -- CREATE VIEW questions_clean AS SELECT questions.question_code, replace(replace((questions.question)::text, 'Number to'::text, 'Number -'::text), 'Proportion to'::text, 'Proportion -'::text) AS question FROM questions; ALTER TABLE questions_clean OWNER TO postgres; -- -- TOC entry 184 (class 1259 OID 16468) -- Name: questionsmapper; Type: VIEW; Schema: public; Owner: postgres -- CREATE VIEW questionsmapper AS SELECT replace((questions.question_code)::text, '_'::text, ''::text) AS db_qcode, questions.question_code FROM questions ORDER BY questions.question_code; ALTER TABLE questionsmapper OWNER TO postgres; SET default_with_oids = true; -- -- TOC entry 188 (class 1259 OID 498284) -- Name: states; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE states ( title character varying, data json, description character varying, username character varying, category character varying, screenshot character varying ); ALTER TABLE states OWNER TO postgres; SET default_with_oids = false; -- -- TOC entry 185 (class 1259 OID 16472) -- Name: wave1; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE wave1 ( qa_01 character varying(50), qa_02 character varying(50), qa_03 character varying(50), qa_04 character varying(50), qa_05 character varying(50), qa_06 character varying(50), qa_07 character varying(50), qa_08 character varying(50), qa_09 character varying(50), qa_10 character varying(50), qa_11 character varying(50), qa_12 character varying(50), qa_13 character varying(50), qa_14 character varying(50), qa_15 character varying(50), qa_16 character varying(50), qa_17 character varying(50), "@all" character varying(50), qb_01 character varying(50), qb_02 character varying(50), qb_03 character varying(50), qb_04 character varying(50), qb_05 character varying(50), qb_06 character varying(50), qb_07 character varying(50), qb_08 character varying(50), qb_09 character varying(50), qb_10 character varying(50), qb_11 character varying(50), qb_12 character varying(50), qc_01 character varying(50), qc_02 character varying(50), qc_03 character varying(50), qc_04 character varying(50), qc_05 character varying(50), qc_06 character varying(50), qc_07 character varying(50), qc_08 character varying(50), qc_09 character varying(50), qc_10 character varying(50), qc_11 character varying(50), qc_12 character varying(50), qc_13 character varying(50), qd character varying(50), q1a01 character varying(50), q1a02 character varying(50), q1a03 character varying(50), q1a04 character varying(50), q1a05 character varying(50), q1a06 character varying(50), q1a07 character varying(50), q1a08 character varying(50), q1a09 character varying(50), q1a10 character varying(50), q1a11 character varying(50), q1b01 character varying(50), q1b02 character varying(50), q1b03 character varying(50), q1b04 character varying(50), q1b05 character varying(50), q1b06 character varying(50), q1b07 character varying(50), q1b08 character varying(50), q1b09 character varying(50), q1b10 character varying(50), q1b11 character varying(50), q1c01 character varying(50), q1c02 character varying(50), q1c03 character varying(50), q1c04 character varying(50), q1c05 character varying(50), q1c06 character varying(50), q1c07 character varying(50), q1c08 character varying(50), q1c09 character varying(50), q1c10 character varying(50), q1c11 character varying(50), q2a01 character varying(50), q2a02 character varying(50), q2a03 character varying(50), q2a04 character varying(50), q2a05 character varying(50), q2a06 character varying(50), q2a07 character varying(50), q2a08 character varying(50), q2a09 character varying(50), q2a10 character varying(50), q2a11 character varying(50), q2b01 character varying(50), q2b02 character varying(50), q2b03 character varying(50), q2b04 character varying(50), q2b05 character varying(50), q2b06 character varying(50), q2b07 character varying(50), q2b08 character varying(50), q2b09 character varying(50), q2b10 character varying(50), q2b11 character varying(50), q2c01 character varying(50), q2c02 character varying(50), q2c03 character varying(50), q2c04 character varying(50), q2c05 character varying(50), q2c06 character varying(50), q2c07 character varying(50), q2c08 character varying(50), q2c09 character varying(50), q2c10 character varying(50), q2c11 character varying(50), q3a1 character varying(50), q3a2 character varying(50), q3a3 character varying(50), q3a4 character varying(50), q3a5 character varying(50), q3a6 character varying(50), q3a7 character varying(50), q3a8 character varying(50), q3b1 character varying(50), q3b2 character varying(50), q3b3 character varying(50), q3b4 character varying(50), q3b5 character varying(50), q3b6 character varying(50), q3b7 character varying(50), q3b8 character varying(50), q3c1 character varying(50), q3c2 character varying(50), q3c3 character varying(50), q3c4 character varying(50), q3c5 character varying(50), q3c6 character varying(50), q3c7 character varying(50), q3c8 character varying(50), qb11tota character varying(50), qb11otha character varying(50), qb1_1ai character varying(50), qb1_1aii character varying(50), qb11aii1 character varying(50), qb1_1aiv character varying(50), qb1_1ava character varying(50), qb1_1avb character varying(50), qb1_2a character varying(50), qb1_2b character varying(50), qb1_2c character varying(50), qb13tota character varying(50), qb1_3a character varying(50), qb1_3b character varying(50), qb1_3ab character varying(50), qb1_5a character varying(50), qb15a_pr character varying(50), qb1_6pro character varying(50), qb1_5b character varying(50), qb15b_pr character varying(50), qb1_7 character varying(50), qb17proa character varying(50), qb17prob character varying(50), qb1_3c1 character varying(50), qb1_3c2 character varying(50), qb1_3c12 character varying(50), qb1_3d character varying(50), qb18a_01 character varying(50), qb18a_02 character varying(50), qb18a_03 character varying(50), qb18a_04 character varying(50), qb18a_05 character varying(50), qb18a011 character varying(50), qb18a021 character varying(50), qb18a031 character varying(50), qb18a041 character varying(50), qb18a051 character varying(50), qb18a012 character varying(50), qb18a022 character varying(50), qb18a032 character varying(50), qb18a042 character varying(50), qb18a052 character varying(50), qb18b_01 character varying(50), qb18b_02 character varying(50), qb18b_03 character varying(50), qb18b_04 character varying(50), qb18b_05 character varying(50), qb18b011 character varying(50), qb18b021 character varying(50), qb18b031 character varying(50), qb18b041 character varying(50), qb18b051 character varying(50), qb18b012 character varying(50), qb18b022 character varying(50), qb18b032 character varying(50), qb18b042 character varying(50), qb18b052 character varying(50), qb21tota character varying(50), qb2_1ai character varying(50), qb2_1aii character varying(50), qb2_2a character varying(50), qb2_2b character varying(50), qb2_2c character varying(50), qb23tota character varying(50), qb2_3a character varying(50), qb2_3b character varying(50), qb2_3ab character varying(50), qb2_5a character varying(50), qb25a_pr character varying(50), qb2_6pro character varying(50), qb2_5b character varying(50), qb25b_pr character varying(50), qb2_7 character varying(50), qb27proa character varying(50), qb27prob character varying(50), qb2_3c character varying(50), qb2_3d character varying(50), qb31tota character varying(50), qb3_1ai character varying(50), qb3_1aii character varying(50), qb3_2a character varying(50), qb3_2b character varying(50), qb3_2c character varying(50), qb33tota character varying(50), qb3_3a character varying(50), qb3_3b character varying(50), qb3_3ab character varying(50), qb3_5a character varying(50), qb35a_pr character varying(50), qb3_6pro character varying(50), qb3_5b character varying(50), qb35b_pr character varying(50), qb3_7 character varying(50), qb37proa character varying(50), qb37prob character varying(50), qb3_3c character varying(50), qb3_3d character varying(50), qb41tota character varying(50), qb41otha character varying(50), qb4_1ai character varying(50), qb4_1aii character varying(50), qb41aii1 character varying(50), qb4_1aiv character varying(50), qb4_1av character varying(50), qb4_1avi character varying(50), qb4_2a character varying(50), qb4_2b character varying(50), qb4_2c character varying(50), qb43tota character varying(50), qb4_3a character varying(50), qb4_3b character varying(50), qb4_3ab character varying(50), qb4_5a character varying(50), qb45a_pr character varying(50), qb4_6pro character varying(50), qb4_5b character varying(50), qb45b_pr character varying(50), qb4_5c character varying(50), qb45c_pr character varying(50), qb4_7 character varying(50), qb47proa character varying(50), qb47prob character varying(50), qb4_3c character varying(50), qb4_3d character varying(50), qb48a_01 character varying(50), qb48a_02 character varying(50), qb48a_03 character varying(50), qb48a_04 character varying(50), qb48a_05 character varying(50), qb48a011 character varying(50), qb48a021 character varying(50), qb48a031 character varying(50), qb48a041 character varying(50), qb48a051 character varying(50), qb48a012 character varying(50), qb48a022 character varying(50), qb48a032 character varying(50), qb48a042 character varying(50), qb48a052 character varying(50), qb48b_01 character varying(50), qb48b_02 character varying(50), qb48b_03 character varying(50), qb48b_04 character varying(50), qb48b_05 character varying(50), qb48b011 character varying(50), qb48b021 character varying(50), qb48b031 character varying(50), qb48b041 character varying(50), qb48b051 character varying(50), qb48b012 character varying(50), qb48b022 character varying(50), qb48b032 character varying(50), qb48b042 character varying(50), qb48b052 character varying(50), qb51tota character varying(50), qb5_1ai character varying(50), qb5_1aii character varying(50), qb51aii1 character varying(50), qb5_2a character varying(50), qb5_2b character varying(50), qb5_2c character varying(50), qb53tota character varying(50), qb5_3a character varying(50), qb5_3b character varying(50), qb5_3ab character varying(50), qb5_5a character varying(50), qb55a_pr character varying(50), qb5_6pro character varying(50), qb5_5b character varying(50), qb55b_pr character varying(50), qb5_7 character varying(50), qb57proa character varying(50), qb57prob character varying(50), qb5_3c character varying(50), qb5_3d character varying(50), qb61tota character varying(50), qb6_1ai character varying(50), qb6_1aii character varying(50), qb6_2a character varying(50), qb6_2b character varying(50), qb6_2c character varying(50), qb63tota character varying(50), qb6_3a character varying(50), qb6_3b character varying(50), qb6_3ab character varying(50), qb6_5a character varying(50), qb65a_pr character varying(50), qb6_6pro character varying(50), qb6_5b character varying(50), qb65b_pr character varying(50), qb6_7 character varying(50), qb67proa character varying(50), qb67prob character varying(50), qb6_3c character varying(50), qb6_3d character varying(50), qb68a_01 character varying(50), qb68a_02 character varying(50), qb68a_03 character varying(50), qb68a_04 character varying(50), qb68a_05 character varying(50), qb68a011 character varying(50), qb68a021 character varying(50), qb68a031 character varying(50), qb68a041 character varying(50), qb68a051 character varying(50), qb68a012 character varying(50), qb68a022 character varying(50), qb68a032 character varying(50), qb68a042 character varying(50), qb68a052 character varying(50), qb68b_01 character varying(50), qb68b_02 character varying(50), qb68b_03 character varying(50), qb68b_04 character varying(50), qb68b_05 character varying(50), qb68b011 character varying(50), qb68b021 character varying(50), qb68b031 character varying(50), qb68b041 character varying(50), qb68b051 character varying(50), qb68b012 character varying(50), qb68b022 character varying(50), qb68b032 character varying(50), qb68b042 character varying(50), qb68b052 character varying(50), qbx1tota character varying(50), qbx_ai character varying(50), qbx_aii character varying(50), qbx_aiii character varying(50), qbx_aiv character varying(50), qbx_av character varying(50), qbx3tota character varying(50), qbx3a_to character varying(50), qbx3b_to character varying(50), qbx3abto character varying(50), qbx5a_to character varying(50), qbx5a_pr character varying(50), qbx_6 character varying(50), qbx_6pro character varying(50), qbx5b_to character varying(50), qbx5b_pr character varying(50), qbx_7a_a character varying(50), qbx7proa character varying(50), qbx_7a_b character varying(50), qbx7prob character varying(50), qbx_3c character varying(50), qbx_3d character varying(50), q4a character varying(50), q4b character varying(50), q4c character varying(50), q4d character varying(50), q4e character varying(50), q4f character varying(50), q4g character varying(50), q4h character varying(50), q501 character varying(50), q502 character varying(50), q503 character varying(50), q504 character varying(50), q505 character varying(50), q506 character varying(50), q507 character varying(50), q508 character varying(50), q509 character varying(50), q510 character varying(50), q511 character varying(50), q512 character varying(50), q513 character varying(50), q601 character varying(50), q602 character varying(50), q603 character varying(50), q604 character varying(50), q605 character varying(50), q606 character varying(50), q607 character varying(50), q608 character varying(50), q609 character varying(50), q610 character varying(50), q611 character varying(50), q612 character varying(50), q613 character varying(50), q614 character varying(50), q615 character varying(50), q616 character varying(50), q617 character varying(50), q618 character varying(50), q619 character varying(50), q620 character varying(50), q701 character varying(50), q702 character varying(50), q703 character varying(50), q704 character varying(50), q705 character varying(50), q706 character varying(50), q707 character varying(50), q708 character varying(50), q709 character varying(50), q710 character varying(50), q711 character varying(50), q712 character varying(50), q713 character varying(50), q714 character varying(50), q715 character varying(50), q801 character varying(50), q802 character varying(50), q803 character varying(50), q804 character varying(50), q805 character varying(50), q806 character varying(50), q807 character varying(50), q808 character varying(50), q809 character varying(50), q810 character varying(50), q811 character varying(50), q812 character varying(50), q813 character varying(50), q814 character varying(50), q815 character varying(50), q816 character varying(50), q817 character varying(50), q818 character varying(50), q901 character varying(50), q902 character varying(50), q903 character varying(50), q904 character varying(50), q905 character varying(50), q906 character varying(50), q907 character varying(50), q908 character varying(50), q909 character varying(50), q910 character varying(50), q10ext01 character varying(50), q10ext02 character varying(50), q10ext03 character varying(50), q10ext04 character varying(50), q10ext05 character varying(50), q10ext06 character varying(50), q10ext07 character varying(50), q10ext08 character varying(50), q10ext09 character varying(50), q10ext10 character varying(50), q10ext11 character varying(50), q10ext12 character varying(50), q10ext13 character varying(50), q10ext14 character varying(50), q10ext15 character varying(50), q10ext16 character varying(50), q10ext17 character varying(50), q10ext18 character varying(50), q10ext19 character varying(50), q10ext20 character varying(50), q10ext21 character varying(50), q10ext22 character varying(50), q10ext23 character varying(50), q10ext24 character varying(50), q10ext25 character varying(50), q10ext26 character varying(50), q10ex101 character varying(50), q10ex102 character varying(50), q10ex103 character varying(50), q10ex104 character varying(50), q10ex105 character varying(50), q10ex106 character varying(50), q10ex107 character varying(50), q10ex108 character varying(50), q10ex109 character varying(50), q10ex110 character varying(50), q10ex111 character varying(50), q10ex112 character varying(50), q10ex113 character varying(50), q10ex114 character varying(50), q10ex115 character varying(50), q10ex116 character varying(50), q10ex117 character varying(50), q10ex118 character varying(50), q10ex119 character varying(50), q10ex120 character varying(50), q11a character varying(50), q11b01 character varying(50), q11b02 character varying(50), q11b03 character varying(50), q11b04 character varying(50), q11b05 character varying(50), q11b06 character varying(50), q11b07 character varying(50), q11b08 character varying(50), q11b09 character varying(50), q11b10 character varying(50), q11b11 character varying(50), q11b12 character varying(50), q11b13 character varying(50), q11b14 character varying(50), q11b15 character varying(50), q11b16 character varying(50), q11b17 character varying(50), q11b18 character varying(50), q11b19 character varying(50), q11b20 character varying(50), q11b21 character varying(50), csex character varying(50), cage2 character varying(50), cage6 character varying(50), cage8 character varying(50), class3 character varying(50), class41 character varying(50), class42 character varying(50), class43 character varying(50), class44 character varying(50), class45 character varying(50), class46 character varying(50), class5 character varying(50), cmari1 character varying(50), cwork1 character varying(50), cwork5 character varying(50), child2 character varying(50), child51 character varying(50), child52 character varying(50), child53 character varying(50), child54 character varying(50), child55 character varying(50), chsex1 character varying(50), chsex2 character varying(50), cads character varying(50), chhs character varying(50), satcab81 character varying(50), satcab82 character varying(50), satcab83 character varying(50), cphone5 character varying(50), cten character varying(50), rural2 character varying(50), country1 character varying(50), govreg12 character varying(50), govreg3 character varying(50), ceth character varying(50), ceth3 character varying(50), bremus01 character varying(50), bremus02 character varying(50), bremus03 character varying(50), bremus04 character varying(50), bremus05 character varying(50), bremus06 character varying(50), bremus07 character varying(50), bremus08 character varying(50), bremus09 character varying(50), bremus10 character varying(50), bremus11 character varying(50), bremus12 character varying(50), bremus13 character varying(50), brvide01 character varying(50), brvide02 character varying(50), brvide03 character varying(50), brvide04 character varying(50), brvide05 character varying(50), brvide06 character varying(50), brvide07 character varying(50), brvide08 character varying(50), brvide09 character varying(50), brvide10 character varying(50), brvide11 character varying(50), brvide12 character varying(50), brvide13 character varying(50), bresof01 character varying(50), bresof02 character varying(50), bresof03 character varying(50), bresof04 character varying(50), bresof05 character varying(50), bresof06 character varying(50), bresof07 character varying(50), bresof08 character varying(50), bresof09 character varying(50), bresof10 character varying(50), bresof11 character varying(50), bresof12 character varying(50), bresof13 character varying(50), brefil01 character varying(50), brefil02 character varying(50), brefil03 character varying(50), brefil04 character varying(50), brefil05 character varying(50), brefil06 character varying(50), brefil07 character varying(50), brefil08 character varying(50), brefil09 character varying(50), brefil10 character varying(50), brefil11 character varying(50), brefil12 character varying(50), brefil13 character varying(50), brtvpr01 character varying(50), brtvpr02 character varying(50), brtvpr03 character varying(50), brtvpr04 character varying(50), brtvpr05 character varying(50), brtvpr06 character varying(50), brtvpr07 character varying(50), brtvpr08 character varying(50), brtvpr09 character varying(50), brtvpr10 character varying(50), brtvpr11 character varying(50), brtvpr12 character varying(50), brtvpr13 character varying(50), breboo01 character varying(50), breboo02 character varying(50), breboo03 character varying(50), breboo04 character varying(50), breboo05 character varying(50), breboo06 character varying(50), breboo07 character varying(50), breboo08 character varying(50), breboo09 character varying(50), breboo10 character varying(50), breboo11 character varying(50), breboo12 character varying(50), breboo13 character varying(50), brbcom01 character varying(50), brbcom02 character varying(50), brbcom03 character varying(50), brbcom04 character varying(50), brbcom05 character varying(50), brbcom06 character varying(50), brbcom07 character varying(50), brbcom08 character varying(50), brbcom09 character varying(50), brbcom10 character varying(50), brbcom11 character varying(50), brbcom12 character varying(50), brbcom13 character varying(50), bremetho character varying(50), cexage real, qb1totra real, qb11aira real, qb1aira1 real, qb1aiira real, qb1aira2 real, qb11avra real, qb1totr1 real, qb21aira real, qb1aira3 real, qb1totr2 real, qb31aira real, qb1aira4 real, qb1totr3 real, qb41aira real, qb1aira5 real, qb1aira6 real, qb1aira7 real, qb41avra real, qb1avra1 real, qb1totr4 real, qb51aira real, qb1aira8 real, qb1aira9 real, qb1totr5 real, qb61aira real, qb1air10 real, qb3totra real, qb3totr1 real, qb3totr2 real, qb3totr3 real, qb3totr4 real, qb3totr5 real, qb13a_ra real, qb23a_ra real, qb33a_ra real, qb43a_ra real, qb53a_ra real, qb63a_ra real, qb13b_ra real, qb23b_ra real, qb33b_ra real, qb43b_ra real, qb53b_ra real, qb63b_ra real, qb13abra real, qb23abra real, qb33abra real, qb43abra real, qb53abra real, qb63abra real, qb15a_ra real, qb25a_ra real, qb35a_ra real, qb45a_ra real, qb55a_ra real, qb65a_ra real, qb1_6raw real, qb2_6raw real, qb3_6raw real, qb4_6raw real, qb5_6raw real, qb6_6raw real, qb15b_ra real, qb25b_ra real, qb35b_ra real, qb45b_ra real, qb55b_ra real, qb65b_ra real, qb45c_ra real, qb1_7raw real, qb2_7raw real, qb3_7raw real, qb4_7raw real, qb5_7raw real, qb6_7raw real, qb13c1ra real, qb13c2ra real, qb3c1cra real, qb23c_ra real, qb33c_ra real, qb43c_ra real, qb53c_ra real, qb63c_ra real, qb13d_ra real, qb23d_ra real, qb33d_ra real, qb43d_ra real, qb53d_ra real, qb63d_ra real, qb5aprra real, qb6_prra real, qb5bprra real, qb7pfrer real, qb7pralr real, qb5aprr1 real, qb6prra1 real, qb5bprr1 real, qbprfrr1 real, qbpralr1 real, qb5aprr2 real, qb6prra2 real, qb5bprr2 real, qbprfrr2 real, qbpralr2 real, qb5aprr3 real, qb6prra3 real, qb5bprr3 real, qb5cprra real, qbprfrr3 real, qbpralr3 real, qb5aprr4 real, qb6prra4 real, qb5bprr4 real, qbprfrr4 real, qbpralr4 real, qb5aprr5 real, qb6prra5 real, qb5bprr5 real, qbprfrr5 real, qbpralr5 real, qb1totr6 real, qb1physr real, qb1onpur real, qb1onsur real, qb1rentr real, qb1relar real, qb3sumra real, qbx3a_ra real, qbx3b_ra real, qbx3abra real, qb5anura real, qb65aprr real, qb66prra real, qb5bnura real, qb65bprr real, qb5frnur real, qb7numra real, qb6pralr real, qb7prfrr real, qbx3c_ra real, qbx3d_ra real, numbhh real, wmid1 real, "Weight_1" real, uniq_id real ); ALTER TABLE wave1 OWNER TO postgres; -- -- TOC entry 186 (class 1259 OID 16480) -- Name: wave2; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE wave2 ( qa_01 character varying(50), qa_02 character varying(50), qa_03 character varying(50), qa_04 character varying(50), qa_05 character varying(50), qa_06 character varying(50), qa_07 character varying(50), qa_08 character varying(50), qa_09 character varying(50), qa_10 character varying(50), qa_11 character varying(50), qa_12 character varying(50), qa_13 character varying(50), qa_14 character varying(50), qa_15 character varying(50), qa_16 character varying(50), qa_17 character varying(50), qa_18 character varying(50), "@all" character varying(50), qb_01 character varying(50), qb_02 character varying(50), qb_03 character varying(50), qb_04 character varying(50), qb_05 character varying(50), qb_06 character varying(50), qb_07 character varying(50), qb_08 character varying(50), qb_09 character varying(50), qb_10 character varying(50), qb_11 character varying(50), qb_12 character varying(50), qc_01 character varying(50), qc_02 character varying(50), qc_03 character varying(50), qc_04 character varying(50), qc_05 character varying(50), qc_06 character varying(50), qc_07 character varying(50), qc_08 character varying(50), qc_09 character varying(50), qc_10 character varying(50), qc_11 character varying(50), qc_12 character varying(50), qc_13 character varying(50), qd character varying(50), q1a01 character varying(50), q1a02 character varying(50), q1a03 character varying(50), q1a04 character varying(50), q1a05 character varying(50), q1a06 character varying(50), q1a07 character varying(50), q1a08 character varying(50), q1a09 character varying(50), q1a10 character varying(50), q1a11 character varying(50), q1b01 character varying(50), q1b02 character varying(50), q1b03 character varying(50), q1b04 character varying(50), q1b05 character varying(50), q1b06 character varying(50), q1b07 character varying(50), q1b08 character varying(50), q1b09 character varying(50), q1b10 character varying(50), q1b11 character varying(50), q1c01 character varying(50), q1c02 character varying(50), q1c03 character varying(50), q1c04 character varying(50), q1c05 character varying(50), q1c06 character varying(50), q1c07 character varying(50), q1c08 character varying(50), q1c09 character varying(50), q1c10 character varying(50), q1c11 character varying(50), q2a01 character varying(50), q2a02 character varying(50), q2a03 character varying(50), q2a04 character varying(50), q2a05 character varying(50), q2a06 character varying(50), q2a07 character varying(50), q2a08 character varying(50), q2a09 character varying(50), q2a10 character varying(50), q2a11 character varying(50), q2b01 character varying(50), q2b02 character varying(50), q2b03 character varying(50), q2b04 character varying(50), q2b05 character varying(50), q2b06 character varying(50), q2b07 character varying(50), q2b08 character varying(50), q2b09 character varying(50), q2b10 character varying(50), q2b11 character varying(50), q2c01 character varying(50), q2c02 character varying(50), q2c03 character varying(50), q2c04 character varying(50), q2c05 character varying(50), q2c06 character varying(50), q2c07 character varying(50), q2c08 character varying(50), q2c09 character varying(50), q2c10 character varying(50), q2c11 character varying(50), q3a1 character varying(50), q3a2 character varying(50), q3a3 character varying(50), q3a4 character varying(50), q3a5 character varying(50), q3a6 character varying(50), q3a7 character varying(50), q3a8 character varying(50), q3b1 character varying(50), q3b2 character varying(50), q3b3 character varying(50), q3b4 character varying(50), q3b5 character varying(50), q3b6 character varying(50), q3b7 character varying(50), q3b8 character varying(50), q3c1 character varying(50), q3c2 character varying(50), q3c3 character varying(50), q3c4 character varying(50), q3c5 character varying(50), q3c6 character varying(50), q3c7 character varying(50), q3c8 character varying(50), qb11tota character varying(50), qb11aoth character varying(50), qb1_1ai character varying(50), qb1_1aii character varying(50), qb11aii1 character varying(50), qb1_1aiv character varying(50), qb1_1ava character varying(50), qb1_2a character varying(50), qb1_2b character varying(50), qb1_2c character varying(50), qb13tota character varying(50), qb1_3a character varying(50), qb1_3b character varying(50), qb1_3ab character varying(50), qb1_5a character varying(50), qb15a_pr character varying(50), qb1_6 character varying(50), qb1_6pro character varying(50), qb1_5b character varying(50), qb15b_pr character varying(50), qb1_7b character varying(50), qb17prob character varying(50), qb1_7 character varying(50), qb17proa character varying(50), qb1_7b_t character varying(50), qb7_prb1 character varying(50), qb1_7_t character varying(50), qb7_pra1 character varying(50), qb1_3c1 character varying(50), qb1_3c2 character varying(50), qb1_3c12 character varying(50), qb13c_pr character varying(50), qb1_3d character varying(50), qb18a_01 character varying(50), qb18a_02 character varying(50), qb18a_03 character varying(50), qb18a_04 character varying(50), qb18a_05 character varying(50), qb18a011 character varying(50), qb18a021 character varying(50), qb18a031 character varying(50), qb18a041 character varying(50), qb18a051 character varying(50), qb18a012 character varying(50), qb18a022 character varying(50), qb18a032 character varying(50), qb18a042 character varying(50), qb18a052 character varying(50), qb18b_01 character varying(50), qb18b_02 character varying(50), qb18b_03 character varying(50), qb18b_04 character varying(50), qb18b_05 character varying(50), qb18b011 character varying(50), qb18b021 character varying(50), qb18b031 character varying(50), qb18b041 character varying(50), qb18b051 character varying(50), qb18b012 character varying(50), qb18b022 character varying(50), qb18b032 character varying(50), qb18b042 character varying(50), qb18b052 character varying(50), qb21tota character varying(50), qb2_1ai character varying(50), qb2_1aii character varying(50), qb2_2a character varying(50), qb2_2b character varying(50), qb2_2c character varying(50), qb23tota character varying(50), qb2_3a character varying(50), qb2_3b character varying(50), qb2_3ab character varying(50), qb2_5a character varying(50), qb25a_pr character varying(50), qb2_6 character varying(50), qb2_6pro character varying(50), qb2_5b character varying(50), qb25b_pr character varying(50), qb2_7 character varying(50), qb2_7_t character varying(50), qb27proa character varying(50), qb27prob character varying(50), qb2_3c character varying(50), qb2_3d character varying(50), qb31tota character varying(50), qb3_1ai character varying(50), qb3_1aii character varying(50), qb3_2a character varying(50), qb3_2b character varying(50), qb3_2c character varying(50), qb33tota character varying(50), qb3_3a character varying(50), qb3_3b character varying(50), qb3_3ab character varying(50), qb3_5a character varying(50), qb35a_pr character varying(50), qb3_6 character varying(50), qb3_6pro character varying(50), qb3_5b character varying(50), qb35b_pr character varying(50), qb3_7 character varying(50), qb3_7_t character varying(50), qb37proa character varying(50), qb37prob character varying(50), qb3_3c character varying(50), qb3_3d character varying(50), qb41tota character varying(50), qb41othe character varying(50), qb4_1ai character varying(50), qb4_1aii character varying(50), qb41aii1 character varying(50), qb4_1aiv character varying(50), qb4_1av character varying(50), qb4_1avi character varying(50), qb4_2a character varying(50), qb4_2b character varying(50), qb4_2c character varying(50), qb43tota character varying(50), qb4_3a character varying(50), qb4_3b character varying(50), qb4_3ab character varying(50), qb4_5a character varying(50), qb45a_pr character varying(50), qb4_6 character varying(50), qb4_6pro character varying(50), qb4_5b character varying(50), qb45b_pr character varying(50), qb4_5c character varying(50), qb45c_pr character varying(50), qb4_7b character varying(50), qb47prob character varying(50), qb4_7 character varying(50), qb47proa character varying(50), qb4_7b_t character varying(50), qb7_prb2 character varying(50), qb4_7_t character varying(50), qb7_pra2 character varying(50), qb4_3c character varying(50), qb4_3d character varying(50), qb48a_01 character varying(50), qb48a_02 character varying(50), qb48a_03 character varying(50), qb48a_04 character varying(50), qb48a_05 character varying(50), qb48a011 character varying(50), qb48a021 character varying(50), qb48a031 character varying(50), qb48a041 character varying(50), qb48a051 character varying(50), qb48a012 character varying(50), qb48a022 character varying(50), qb48a032 character varying(50), qb48a042 character varying(50), qb48a052 character varying(50), qb48b_01 character varying(50), qb48b_02 character varying(50), qb48b_03 character varying(50), qb48b_04 character varying(50), qb48b_05 character varying(50), qb48b011 character varying(50), qb48b021 character varying(50), qb48b031 character varying(50), qb48b041 character varying(50), qb48b051 character varying(50), qb48b012 character varying(50), qb48b022 character varying(50), qb48b032 character varying(50), qb48b042 character varying(50), qb48b052 character varying(50), qb51tota character varying(50), qb5_1ai character varying(50), qb5_1aii character varying(50), qb51aii1 character varying(50), qb5_2a character varying(50), qb5_2b character varying(50), qb5_2c character varying(50), qb53tota character varying(50), qb5_3a character varying(50), qb5_3b character varying(50), qb5_3ab character varying(50), qb5_5a character varying(50), qb55a_pr character varying(50), qb5_6 character varying(50), qb5_6pro character varying(50), qb5_5b character varying(50), qb55b_pr character varying(50), qb5_7 character varying(50), qb5_7_t character varying(50), qb57proa character varying(50), qb57prob character varying(50), qb5_3c character varying(50), qb5_3d character varying(50), qb61tota character varying(50), qb6_1ai character varying(50), qb6_1aii character varying(50), qb6_2a character varying(50), qb6_2b character varying(50), qb6_2c character varying(50), qb63tota character varying(50), qb6_3a character varying(50), qb6_3b character varying(50), qb6_3ab character varying(50), qb6_5a character varying(50), qb65a_pr character varying(50), qb6_6 character varying(50), qb6_6pro character varying(50), qb6_5b character varying(50), qb65b_pr character varying(50), qb6_7 character varying(50), qb6_7_t character varying(50), qb67proa character varying(50), qb67prob character varying(50), qb6_3c character varying(50), qb6_3d character varying(50), qb68a_01 character varying(50), qb68a_02 character varying(50), qb68a_03 character varying(50), qb68a_04 character varying(50), qb68a_05 character varying(50), qb68a011 character varying(50), qb68a021 character varying(50), qb68a031 character varying(50), qb68a041 character varying(50), qb68a051 character varying(50), qb68a012 character varying(50), qb68a022 character varying(50), qb68a032 character varying(50), qb68a042 character varying(50), qb68a052 character varying(50), qb68b_01 character varying(50), qb68b_02 character varying(50), qb68b_03 character varying(50), qb68b_04 character varying(50), qb68b_05 character varying(50), qb68b011 character varying(50), qb68b021 character varying(50), qb68b031 character varying(50), qb68b041 character varying(50), qb68b051 character varying(50), qb68b012 character varying(50), qb68b022 character varying(50), qb68b032 character varying(50), qb68b042 character varying(50), qb68b052 character varying(50), qbx1tota character varying(50), qbx_ai character varying(50), qbx_aii character varying(50), qbx_aiii character varying(50), qbx_aiv character varying(50), qbx_av character varying(50), qbx3tota character varying(50), qbx3a_to character varying(50), qbx3b_to character varying(50), qbx3abto character varying(50), qbx5a_to character varying(50), qbx5a_pr character varying(50), qbx_6 character varying(50), qbx_6pro character varying(50), qbx5b_to character varying(50), qbx5b_pr character varying(50), qbx_7b_a character varying(50), qbx7b_pr character varying(50), qbx_7a_a character varying(50), qbx7proa character varying(50), qbx_7a_b character varying(50), qbx7prob character varying(50), qbx_7aab character varying(50), qb7_pra3 character varying(50), qbx_3c character varying(50), qbx_3d character varying(50), q4a character varying(50), q4b character varying(50), q4c character varying(50), q4d character varying(50), q4e character varying(50), q4f character varying(50), q4g character varying(50), q4h character varying(50), q501 character varying(50), q502 character varying(50), q503 character varying(50), q504 character varying(50), q505 character varying(50), q506 character varying(50), q507 character varying(50), q508 character varying(50), q509 character varying(50), q510 character varying(50), q511 character varying(50), q512 character varying(50), q513 character varying(50), q601 character varying(50), q602 character varying(50), q603 character varying(50), q604 character varying(50), q605 character varying(50), q606 character varying(50), q607 character varying(50), q608 character varying(50), q609 character varying(50), q610 character varying(50), q611 character varying(50), q612 character varying(50), q613 character varying(50), q614 character varying(50), q615 character varying(50), q616 character varying(50), q617 character varying(50), q618 character varying(50), q619 character varying(50), q620 character varying(50), q701 character varying(50), q702 character varying(50), q703 character varying(50), q704 character varying(50), q705 character varying(50), q706 character varying(50), q707 character varying(50), q708 character varying(50), q709 character varying(50), q710 character varying(50), q711 character varying(50), q712 character varying(50), q713 character varying(50), q714 character varying(50), q715 character varying(50), q801 character varying(50), q802 character varying(50), q803 character varying(50), q804 character varying(50), q805 character varying(50), q806 character varying(50), q807 character varying(50), q808 character varying(50), q809 character varying(50), q810 character varying(50), q811 character varying(50), q812 character varying(50), q813 character varying(50), q814 character varying(50), q815 character varying(50), q816 character varying(50), q817 character varying(50), q818 character varying(50), q901 character varying(50), q902 character varying(50), q903 character varying(50), q904 character varying(50), q905 character varying(50), q906 character varying(50), q907 character varying(50), q908 character varying(50), q909 character varying(50), q910 character varying(50), q10a01 character varying(50), q10a02 character varying(50), q10a03 character varying(50), q10a04 character varying(50), q10a05 character varying(50), q10a06 character varying(50), q10a07 character varying(50), q10a08 character varying(50), q10a09 character varying(50), q10a10 character varying(50), q10a11 character varying(50), q10a12 character varying(50), q10a13 character varying(50), q10a14 character varying(50), q10a15 character varying(50), q10a16 character varying(50), q10a17 character varying(50), q10a18 character varying(50), q10a19 character varying(50), q10a20 character varying(50), q10a21 character varying(50), q10a22 character varying(50), q10a23 character varying(50), q10a24 character varying(50), q10a25 character varying(50), q10a26 character varying(50), q10b01 character varying(50), q10b02 character varying(50), q10b03 character varying(50), q10b04 character varying(50), q10b05 character varying(50), q10b06 character varying(50), q10b07 character varying(50), q10b08 character varying(50), q10b09 character varying(50), q10b10 character varying(50), q10b11 character varying(50), q10b12 character varying(50), q10b13 character varying(50), q10b14 character varying(50), q10b15 character varying(50), q10b16 character varying(50), q10b17 character varying(50), q10b18 character varying(50), q10b19 character varying(50), q10b20 character varying(50), q11a character varying(50), q11b character varying(50), csex character varying(50), cage2 character varying(50), cage6 character varying(50), cage8 character varying(50), class3 character varying(50), class41 character varying(50), class42 character varying(50), class43 character varying(50), class44 character varying(50), class45 character varying(50), class46 character varying(50), class5 character varying(50), cmari1 character varying(50), cwork1 character varying(50), cwork5 character varying(50), child2 character varying(50), child51 character varying(50), child52 character varying(50), child53 character varying(50), child54 character varying(50), child55 character varying(50), chsex1 character varying(50), chsex2 character varying(50), cads character varying(50), chhs character varying(50), cnet21 character varying(50), cnet22 character varying(50), cnet23 character varying(50), cnet3 character varying(50), cnet01 character varying(50), cnet02 character varying(50), cnet03 character varying(50), cnet04 character varying(50), cnet05 character varying(50), cnet06 character varying(50), cnet07 character varying(50), cnet08 character varying(50), cnet09 character varying(50), cnet10 character varying(50), cnet11 character varying(50), cnet12 character varying(50), cnet13 character varying(50), cnet14 character varying(50), cnet15 character varying(50), cnet16 character varying(50), cnet17 character varying(50), satcab81 character varying(50), satcab82 character varying(50), satcab83 character varying(50), cphone5 character varying(50), cten character varying(50), rural2 character varying(50), country1 character varying(50), govreg12 character varying(50), govreg3 character varying(50), ceth character varying(50), ceth3 character varying(50), bresof01 character varying(50), bresof02 character varying(50), bresof03 character varying(50), bresof04 character varying(50), bresof05 character varying(50), bresof06 character varying(50), bresof07 character varying(50), bresof08 character varying(50), bresof09 character varying(50), bresof10 character varying(50), bresof11 character varying(50), bresof12 character varying(50), bresof13 character varying(50), brefil01 character varying(50), brefil02 character varying(50), brefil03 character varying(50), brefil04 character varying(50), brefil05 character varying(50), brefil06 character varying(50), brefil07 character varying(50), brefil08 character varying(50), brefil09 character varying(50), brefil10 character varying(50), brefil11 character varying(50), brefil12 character varying(50), brefil13 character varying(50), brfil101 character varying(50), brfil102 character varying(50), brfil103 character varying(50), brfil104 character varying(50), brfil105 character varying(50), brfil106 character varying(50), brfil107 character varying(50), brfil108 character varying(50), brfil109 character varying(50), brfil110 character varying(50), brfil111 character varying(50), brfil112 character varying(50), brfil113 character varying(50), brtvpr01 character varying(50), brtvpr02 character varying(50), brtvpr03 character varying(50), brtvpr04 character varying(50), brtvpr05 character varying(50), brtvpr06 character varying(50), brtvpr07 character varying(50), brtvpr08 character varying(50), brtvpr09 character varying(50), brtvpr10 character varying(50), brtvpr11 character varying(50), brtvpr12 character varying(50), brtvpr13 character varying(50), breboo01 character varying(50), breboo02 character varying(50), breboo03 character varying(50), breboo04 character varying(50), breboo05 character varying(50), breboo06 character varying(50), breboo07 character varying(50), breboo08 character varying(50), breboo09 character varying(50), breboo10 character varying(50), breboo11 character varying(50), breboo12 character varying(50), breboo13 character varying(50), brcomb01 character varying(50), brcomb02 character varying(50), brcomb03 character varying(50), brcomb04 character varying(50), brcomb05 character varying(50), brcomb06 character varying(50), brcomb07 character varying(50), brcomb08 character varying(50), brcomb09 character varying(50), brcomb10 character varying(50), brcomb11 character varying(50), brcomb12 character varying(50), brcomb13 character varying(50), brcom101 character varying(50), brcom102 character varying(50), brcom103 character varying(50), brcom104 character varying(50), brcom105 character varying(50), brcom106 character varying(50), brcom107 character varying(50), brcom108 character varying(50), brcom109 character varying(50), brcom110 character varying(50), brcom111 character varying(50), brcom112 character varying(50), brcom113 character varying(50), bremetho character varying(50), cexage real, qb1totra real, qb1aotra real, qb11aira real, qb1aira1 real, qb1aiira real, qb1aira2 real, qb11avra real, qb1totr1 real, qb21aira real, qb1aira3 real, qb1totr2 real, qb31aira real, qb1aira4 real, qb1totr3 real, qb1aotr1 real, qb41aira real, qb1aira5 real, qb1aira6 real, qb1aira7 real, qb41avra real, qb1avra1 real, qb1totr4 real, qb51aira real, qb1aira8 real, qb1aira9 real, qb1totr5 real, qb61aira real, qb1air10 real, qb3totra real, qb3totr1 real, qb3totr2 real, qb3totr3 real, qb3totr4 real, qb3totr5 real, qb13a_ra real, qb23a_ra real, qb33a_ra real, qb43a_ra real, qb53a_ra real, qb63a_ra real, qb13b_ra real, qb23b_ra real, qb33b_ra real, qb43b_ra real, qb53b_ra real, qb63b_ra real, qb13abra real, qb23abra real, qb33abra real, qb43abra real, qb53abra real, qb63abra real, qb15a_ra real, qb25a_ra real, qb35a_ra real, qb45a_ra real, qb55a_ra real, qb65a_ra real, qb1_6raw real, qb2_6raw real, qb3_6raw real, qb4_6raw real, qb5_6raw real, qb6_6raw real, qb15b_ra real, qb25b_ra real, qb35b_ra real, qb45b_ra real, qb55b_ra real, qb65b_ra real, qb45c_ra real, qb1_7raw real, qb2_7raw real, qb3_7raw real, qb4_7raw real, qb5_7raw real, qb6_7raw real, qb17b_ra real, qb47b_ra real, qb13c1ra real, qb13c2ra real, qb3c1cra real, qb23c_ra real, qb33c_ra real, qb43c_ra real, qb53c_ra real, qb63c_ra real, qb13d_ra real, qb23d_ra real, qb33d_ra real, qb43d_ra real, qb53d_ra real, qb63d_ra real, qb3cprra real, qb5aprra real, qb6_prra real, qb5bprra real, qb7prpar real, qb7pralr real, qb7pfrer real, qbpralr1 real, qb5aprr1 real, qb6prra1 real, qb5bprr1 real, qbprfrr1 real, qbpralr2 real, qb5aprr2 real, qb6prra2 real, qb5bprr2 real, qbprfrr2 real, qbpralr3 real, qb5aprr3 real, qb6prra3 real, qb5bprr3 real, qb5cprra real, qb7prfrr real, qb7palr1 real, qbprfrr3 real, qbpralr4 real, qb5aprr4 real, qb6prra4 real, qb5bprr4 real, qbprfrr4 real, qbpralr5 real, qb5aprr5 real, qb6prra5 real, qb5bprr5 real, qbprfrr5 real, qbpralr6 real, qb1totr6 real, qb1physr real, qb1onpur real, qb1onsur real, qb1rentr real, qb1relar real, qb3sumra real, qbx3a_ra real, qbx3b_ra real, qbx3abra real, qb5anura real, qb65aprr real, qb66prra real, qb5bnura real, qb65bprr real, qb7bnura real, qb7bprra real, qb7numra real, qb7_prra real, qb7bnumr real, qb7bprr1 real, qb7anumr real, qb7aprra real, qbx3c_ra real, qbx3d_ra real, numbhh real, wmid1 real, weight_1 real, uniq_id real ); ALTER TABLE wave2 OWNER TO postgres; -- -- TOC entry 187 (class 1259 OID 16486) -- Name: wave3; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE wave3 ( qa_01 character varying(50), qa_02 character varying(50), qa_03 character varying(50), qa_04 character varying(50), qa_05 character varying(50), qa_06 character varying(50), qa_07 character varying(50), qa_08 character varying(50), qa_09 character varying(50), qa_10 character varying(50), qa_11 character varying(50), qa_12 character varying(50), qa_13 character varying(50), qa_14 character varying(50), qa_15 character varying(50), qa_16 character varying(50), qa_17 character varying(50), qa_18 character varying(50), "@all" character varying(50), qb_01 character varying(50), qb_02 character varying(50), qb_03 character varying(50), qb_04 character varying(50), qb_05 character varying(50), qb_06 character varying(50), qb_07 character varying(50), qb_08 character varying(50), qb_09 character varying(50), qb_10 character varying(50), qb_11 character varying(50), qb_12 character varying(50), qc_01 character varying(50), qc_02 character varying(50), qc_03 character varying(50), qc_04 character varying(50), qc_05 character varying(50), qc_06 character varying(50), qc_07 character varying(50), qc_08 character varying(50), qc_09 character varying(50), qc_10 character varying(50), qc_11 character varying(50), qc_12 character varying(50), qc_13 character varying(50), qd character varying(50), q1a01 character varying(50), q1a02 character varying(50), q1a03 character varying(50), q1a04 character varying(50), q1a05 character varying(50), q1a06 character varying(50), q1a07 character varying(50), q1a08 character varying(50), q1a09 character varying(50), q1a10 character varying(50), q1a11 character varying(50), q1b01 character varying(50), q1b02 character varying(50), q1b03 character varying(50), q1b04 character varying(50), q1b05 character varying(50), q1b06 character varying(50), q1b07 character varying(50), q1b08 character varying(50), q1b09 character varying(50), q1b10 character varying(50), q1b11 character varying(50), q1c01 character varying(50), q1c02 character varying(50), q1c03 character varying(50), q1c04 character varying(50), q1c05 character varying(50), q1c06 character varying(50), q1c07 character varying(50), q1c08 character varying(50), q1c09 character varying(50), q1c10 character varying(50), q1c11 character varying(50), q2a01 character varying(50), q2a02 character varying(50), q2a03 character varying(50), q2a04 character varying(50), q2a05 character varying(50), q2a06 character varying(50), q2a07 character varying(50), q2a08 character varying(50), q2a09 character varying(50), q2a10 character varying(50), q2a11 character varying(50), q2b01 character varying(50), q2b02 character varying(50), q2b03 character varying(50), q2b04 character varying(50), q2b05 character varying(50), q2b06 character varying(50), q2b07 character varying(50), q2b08 character varying(50), q2b09 character varying(50), q2b10 character varying(50), q2b11 character varying(50), q2c01 character varying(50), q2c02 character varying(50), q2c03 character varying(50), q2c04 character varying(50), q2c05 character varying(50), q2c06 character varying(50), q2c07 character varying(50), q2c08 character varying(50), q2c09 character varying(50), q2c10 character varying(50), q2c11 character varying(50), q3a1 character varying(50), q3a2 character varying(50), q3a3 character varying(50), q3a4 character varying(50), q3a5 character varying(50), q3a6 character varying(50), q3a7 character varying(50), q3a8 character varying(50), q3b1 character varying(50), q3b2 character varying(50), q3b3 character varying(50), q3b4 character varying(50), q3b5 character varying(50), q3b6 character varying(50), q3b7 character varying(50), q3b8 character varying(50), q3c1 character varying(50), q3c2 character varying(50), q3c3 character varying(50), q3c4 character varying(50), q3c5 character varying(50), q3c6 character varying(50), q3c7 character varying(50), q3c8 character varying(50), qb11tota character varying(50), qb11aoth character varying(50), qb1_1ai character varying(50), qb1_1aii character varying(50), qb11aii1 character varying(50), qb1_1aiv character varying(50), qb1_1ava character varying(50), qb1_2a character varying(50), qb1_2b character varying(50), qb1_2c character varying(50), qb13tota character varying(50), qb1_3a character varying(50), qb1_3b character varying(50), qb1_3ab character varying(50), qb1_5a character varying(50), qb15a_pr character varying(50), qb1_6 character varying(50), qb1_6pro character varying(50), qb1_5b character varying(50), qb15b_pr character varying(50), qb1_7b character varying(50), qb17prob character varying(50), qb1_7 character varying(50), qb17proa character varying(50), qb1_7b_t character varying(50), qb7_prb1 character varying(50), qb1_7_t character varying(50), qb7_pra1 character varying(50), qb1_3c1 character varying(50), qb1_3c2 character varying(50), qb1_3c12 character varying(50), qb13c_pr character varying(50), qb1_3d character varying(50), qb1_401 character varying(50), qb1_402 character varying(50), qb1_403 character varying(50), qb1_404 character varying(50), qb1_405 character varying(50), qb1_406 character varying(50), qb1_407 character varying(50), qb1_408 character varying(50), qb1_409 character varying(50), qb1_410 character varying(50), qb1_411 character varying(50), qb1_412 character varying(50), qb1_413 character varying(50), qb1_414 character varying(50), qb1_415 character varying(50), qb1_416 character varying(50), qb1_417 character varying(50), qb1_418 character varying(50), qb1_419 character varying(50), qb1_420 character varying(50), qb1_421 character varying(50), qb1_422 character varying(50), qb1_423 character varying(50), qb1_424 character varying(50), qb1_425 character varying(50), qb1_426 character varying(50), qb1_427 character varying(50), qb1_428 character varying(50), qb1_429 character varying(50), qb1_430 character varying(50), qb1_431 character varying(50), qb1_432 character varying(50), qb1_433 character varying(50), qb1_434 character varying(50), qb1_435 character varying(50), qb1_436 character varying(50), qb1_437 character varying(50), qb1_438 character varying(50), qb1_439 character varying(50), qb8a01fa character varying(50), qb8a02fa character varying(50), qb8a03fa character varying(50), qb8a04fa character varying(50), qb8a05fa character varying(50), qb18a_01 character varying(50), qb18a_02 character varying(50), qb18a_03 character varying(50), qb18a_04 character varying(50), qb18a_05 character varying(50), qb18a011 character varying(50), qb18a021 character varying(50), qb18a031 character varying(50), qb18a041 character varying(50), qb18a051 character varying(50), qb18a012 character varying(50), qb18a022 character varying(50), qb18a032 character varying(50), qb18a042 character varying(50), qb18a052 character varying(50), qb8b01fa character varying(50), qb8b02fa character varying(50), qb8b03fa character varying(50), qb8b04fa character varying(50), qb8b05fa character varying(50), qb18b_01 character varying(50), qb18b_02 character varying(50), qb18b_03 character varying(50), qb18b_04 character varying(50), qb18b_05 character varying(50), qb18b011 character varying(50), qb18b021 character varying(50), qb18b031 character varying(50), qb18b041 character varying(50), qb18b051 character varying(50), qb18b012 character varying(50), qb18b022 character varying(50), qb18b032 character varying(50), qb18b042 character varying(50), qb18b052 character varying(50), qb21tota character varying(50), qb2_1ai character varying(50), qb2_1aii character varying(50), qb21aii1 character varying(50), qb2_2a character varying(50), qb2_2b character varying(50), qb2_2c character varying(50), qb23tota character varying(50), qb2_3a character varying(50), qb2_3b character varying(50), qb2_3ab character varying(50), qb2_5a character varying(50), qb25a_pr character varying(50), qb2_6 character varying(50), qb2_6pro character varying(50), qb2_5b character varying(50), qb25b_pr character varying(50), qb2_7 character varying(50), qb2_7_t character varying(50), qb27proa character varying(50), qb27prob character varying(50), qb2_3c character varying(50), qb2_3d character varying(50), qb2_401 character varying(50), qb2_402 character varying(50), qb2_403 character varying(50), qb2_404 character varying(50), qb2_405 character varying(50), qb2_406 character varying(50), qb2_407 character varying(50), qb2_408 character varying(50), qb2_409 character varying(50), qb2_410 character varying(50), qb2_411 character varying(50), qb2_412 character varying(50), qb2_413 character varying(50), qb2_414 character varying(50), qb2_415 character varying(50), qb2_416 character varying(50), qb2_417 character varying(50), qb2_418 character varying(50), qb2_419 character varying(50), qb2_420 character varying(50), qb2_421 character varying(50), qb2_422 character varying(50), qb2_423 character varying(50), qb2_424 character varying(50), qb2_425 character varying(50), qb2_426 character varying(50), qb2_427 character varying(50), qb2_428 character varying(50), qb2_429 character varying(50), qb2_430 character varying(50), qb2_431 character varying(50), qb31tota character varying(50), qb3_1ai character varying(50), qb3_1aii character varying(50), qb3_2a character varying(50), qb3_2b character varying(50), qb3_2c character varying(50), qb33tota character varying(50), qb3_3a character varying(50), qb3_3b character varying(50), qb3_3ab character varying(50), qb3_5a character varying(50), qb35a_pr character varying(50), qb3_6 character varying(50), qb3_6pro character varying(50), qb3_5b character varying(50), qb35b_pr character varying(50), qb3_7 character varying(50), qb3_7_t character varying(50), qb37proa character varying(50), qb37prob character varying(50), qb3_3c character varying(50), qb3_3d character varying(50), qb3_401 character varying(50), qb3_402 character varying(50), qb3_403 character varying(50), qb3_404 character varying(50), qb3_405 character varying(50), qb3_406 character varying(50), qb3_407 character varying(50), qb3_408 character varying(50), qb3_409 character varying(50), qb3_410 character varying(50), qb3_411 character varying(50), qb3_412 character varying(50), qb3_413 character varying(50), qb3_414 character varying(50), qb3_415 character varying(50), qb3_416 character varying(50), qb3_417 character varying(50), qb3_418 character varying(50), qb3_419 character varying(50), qb3_420 character varying(50), qb3_421 character varying(50), qb3_422 character varying(50), qb3_423 character varying(50), qb3_424 character varying(50), qb41tota character varying(50), qb41othe character varying(50), qb4_1ai character varying(50), qb4_1aii character varying(50), qb41aii1 character varying(50), qb4_1avi character varying(50), qb41avii character varying(50), qb4_1aiv character varying(50), qb4_1av1 character varying(50), qb4_1av character varying(50), qb4_2a character varying(50), qb4_2b character varying(50), qb4_2c character varying(50), qb43tota character varying(50), qb4_3a character varying(50), qb4_3b character varying(50), qb4_3ab character varying(50), qb4_5a character varying(50), qb45a_pr character varying(50), qb4_6 character varying(50), qb4_6pro character varying(50), qb4_5b character varying(50), qb45b_pr character varying(50), qb4_5c character varying(50), qb45c_pr character varying(50), qb4_7b character varying(50), qb47prob character varying(50), qb4_7 character varying(50), qb47proa character varying(50), qb4_7b_t character varying(50), qb7_prb2 character varying(50), qb4_7_t character varying(50), qb7_pra2 character varying(50), qb4_3c character varying(50), qb4_3d character varying(50), qb4_401 character varying(50), qb4_402 character varying(50), qb4_403 character varying(50), qb4_404 character varying(50), qb4_405 character varying(50), qb4_406 character varying(50), qb4_407 character varying(50), qb4_408 character varying(50), qb4_409 character varying(50), qb4_410 character varying(50), qb4_411 character varying(50), qb4_412 character varying(50), qb4_413 character varying(50), qb4_414 character varying(50), qb4_415 character varying(50), qb4_416 character varying(50), qb4_417 character varying(50), qb4_418 character varying(50), qb4_419 character varying(50), qb4_420 character varying(50), qb4_421 character varying(50), qb4_422 character varying(50), qb4_423 character varying(50), qb4_424 character varying(50), qb4_425 character varying(50), qb4_426 character varying(50), qb4_427 character varying(50), qb4_428 character varying(50), qb4_429 character varying(50), qb4_430 character varying(50), qb4_431 character varying(50), qb4_432 character varying(50), qb4_433 character varying(50), qb4_434 character varying(50), qb4_435 character varying(50), qb8a01f1 character varying(50), qb8a02f1 character varying(50), qb8a03f1 character varying(50), qb8a04f1 character varying(50), qb8a05f1 character varying(50), qb48a_01 character varying(50), qb48a_02 character varying(50), qb48a_03 character varying(50), qb48a_04 character varying(50), qb48a_05 character varying(50), qb48a011 character varying(50), qb48a021 character varying(50), qb48a031 character varying(50), qb48a041 character varying(50), qb48a051 character varying(50), qb48a012 character varying(50), qb48a022 character varying(50), qb48a032 character varying(50), qb48a042 character varying(50), qb48a052 character varying(50), qb8b01f1 character varying(50), qb8b02f1 character varying(50), qb8b03f1 character varying(50), qb8b04f1 character varying(50), qb8b05f1 character varying(50), qb48b_01 character varying(50), qb48b_02 character varying(50), qb48b_03 character varying(50), qb48b_04 character varying(50), qb48b_05 character varying(50), qb48b011 character varying(50), qb48b021 character varying(50), qb48b031 character varying(50), qb48b041 character varying(50), qb48b051 character varying(50), qb48b012 character varying(50), qb48b022 character varying(50), qb48b032 character varying(50), qb48b042 character varying(50), qb48b052 character varying(50), qb51tota character varying(50), qb5_1ai character varying(50), qb5_1aii character varying(50), qb5_1aiv character varying(50), qb5_1av character varying(50), qb51aii1 character varying(50), qb5_2a character varying(50), qb5_2b character varying(50), qb5_2c character varying(50), qb53tota character varying(50), qb5_3a character varying(50), qb5_3b character varying(50), qb5_3ab character varying(50), qb5_5a character varying(50), qb55a_pr character varying(50), qb5_6 character varying(50), qb5_6pro character varying(50), qb5_5b character varying(50), qb55b_pr character varying(50), qb5_7 character varying(50), qb5_7_t character varying(50), qb57proa character varying(50), qb57prob character varying(50), qb5_3c character varying(50), qb5_3d character varying(50), qb5_401 character varying(50), qb5_402 character varying(50), qb5_403 character varying(50), qb5_404 character varying(50), qb5_405 character varying(50), qb5_406 character varying(50), qb5_407 character varying(50), qb5_408 character varying(50), qb5_409 character varying(50), qb5_410 character varying(50), qb5_411 character varying(50), qb5_412 character varying(50), qb5_413 character varying(50), qb5_414 character varying(50), qb5_415 character varying(50), qb5_416 character varying(50), qb5_417 character varying(50), qb5_418 character varying(50), qb5_419 character varying(50), qb5_420 character varying(50), qb5_421 character varying(50), qb5_422 character varying(50), qb5_423 character varying(50), qb5_424 character varying(50), qb5_425 character varying(50), qb5_426 character varying(50), qb5_427 character varying(50), qb5_428 character varying(50), qb5_429 character varying(50), qb5_430 character varying(50), qb5_431 character varying(50), qb5_432 character varying(50), qb5_433 character varying(50), qb5_434 character varying(50), qb5_435 character varying(50), qb5_436 character varying(50), qb61tota character varying(50), qb6_1ai character varying(50), qb6_1aii character varying(50), qb6_1ai1 character varying(50), qb6_2a character varying(50), qb6_2b character varying(50), qb6_2c character varying(50), qb63tota character varying(50), qb6_3a character varying(50), qb6_3b character varying(50), qb6_3ab character varying(50), qb6_5a character varying(50), qb65a_pr character varying(50), qb6_6 character varying(50), qb6_6pro character varying(50), qb6_5b character varying(50), qb65b_pr character varying(50), qb6_7 character varying(50), qb6_7_t character varying(50), qb67proa character varying(50), qb67prob character varying(50), qb6_3c character varying(50), qb6_3d character varying(50), qb6_401 character varying(50), qb6_402 character varying(50), qb6_403 character varying(50), qb6_404 character varying(50), qb6_405 character varying(50), qb6_406 character varying(50), qb6_407 character varying(50), qb6_408 character varying(50), qb6_409 character varying(50), qb6_410 character varying(50), qb6_411 character varying(50), qb6_412 character varying(50), qb6_413 character varying(50), qb6_414 character varying(50), qb6_415 character varying(50), qb6_416 character varying(50), qb6_417 character varying(50), qb6_418 character varying(50), qb6_419 character varying(50), qb6_420 character varying(50), qb6_421 character varying(50), qb6_422 character varying(50), qb6_423 character varying(50), qb6_424 character varying(50), qb6_425 character varying(50), qb6_426 character varying(50), qb6_427 character varying(50), qb6_428 character varying(50), qb6_429 character varying(50), qb6_430 character varying(50), qb8a01f2 character varying(50), qb8a02f2 character varying(50), qb8a03f2 character varying(50), qb8a04f2 character varying(50), qb8a05f2 character varying(50), qb68a_01 character varying(50), qb68a_02 character varying(50), qb68a_03 character varying(50), qb68a_04 character varying(50), qb68a_05 character varying(50), qb68a011 character varying(50), qb68a021 character varying(50), qb68a031 character varying(50), qb68a041 character varying(50), qb68a051 character varying(50), qb68a012 character varying(50), qb68a022 character varying(50), qb68a032 character varying(50), qb68a042 character varying(50), qb68a052 character varying(50), qb8b01f2 character varying(50), qb8b02f2 character varying(50), qb8b03f2 character varying(50), qb8b04f2 character varying(50), qb8b05f2 character varying(50), qb68b_01 character varying(50), qb68b_02 character varying(50), qb68b_03 character varying(50), qb68b_04 character varying(50), qb68b_05 character varying(50), qb68b011 character varying(50), qb68b021 character varying(50), qb68b031 character varying(50), qb68b041 character varying(50), qb68b051 character varying(50), qb68b012 character varying(50), qb68b022 character varying(50), qb68b032 character varying(50), qb68b042 character varying(50), qb68b052 character varying(50), qbx1tota character varying(50), qbx_ai character varying(50), qbx_aii character varying(50), qbx_aiii character varying(50), qbx_av character varying(50), qbx3tota character varying(50), qbx3a_to character varying(50), qbx3b_to character varying(50), qbx3abto character varying(50), qbx5a_to character varying(50), qbx5a_pr character varying(50), qbx_6 character varying(50), qbx_6pro character varying(50), qbx5b_to character varying(50), qbx5b_pr character varying(50), qbx_7b_a character varying(50), qbx7b_pr character varying(50), qbx_7a_a character varying(50), qbx7proa character varying(50), qbx_7a_b character varying(50), qbx7prob character varying(50), qbx_7aab character varying(50), qb7_pra3 character varying(50), qbx_3c character varying(50), qbx_3d character varying(50), qbx_401 character varying(50), qbx_402 character varying(50), qbx_403 character varying(50), qbx_404 character varying(50), qbx_405 character varying(50), qbx_406 character varying(50), qbx_407 character varying(50), qbx_408 character varying(50), qbx_409 character varying(50), qbx_410 character varying(50), qbx_411 character varying(50), qbx_412 character varying(50), qbx_413 character varying(50), qbx_414 character varying(50), qbx_415 character varying(50), qbx_416 character varying(50), qbx_417 character varying(50), qbx_418 character varying(50), qbx_419 character varying(50), qbx_420 character varying(50), qbx_421 character varying(50), qbx_422 character varying(50), qbx_423 character varying(50), qbx_424 character varying(50), qbx_425 character varying(50), qbx_426 character varying(50), qbx_427 character varying(50), qbx_428 character varying(50), qbx_429 character varying(50), qbx_430 character varying(50), qbx_431 character varying(50), qbx_432 character varying(50), qbx_433 character varying(50), qbx_434 character varying(50), qbx_435 character varying(50), qbx_436 character varying(50), qbx_437 character varying(50), qbx_438 character varying(50), qbx_439 character varying(50), qbx_440 character varying(50), qbx_441 character varying(50), qbx_442 character varying(50), qbx_443 character varying(50), qbx_444 character varying(50), qbx_445 character varying(50), qbx_446 character varying(50), qbx_447 character varying(50), qbx_448 character varying(50), qbx_449 character varying(50), qbx_450 character varying(50), qbx_451 character varying(50), qbx_452 character varying(50), qbx_453 character varying(50), qbx_454 character varying(50), qbx_455 character varying(50), qbx_456 character varying(50), qbx_457 character varying(50), qbx_458 character varying(50), qbx_459 character varying(50), qbx_460 character varying(50), qbx_461 character varying(50), qbx_462 character varying(50), qbx_463 character varying(50), q301 character varying(50), q302 character varying(50), q303 character varying(50), q304 character varying(50), q305 character varying(50), q306 character varying(50), q307 character varying(50), q308 character varying(50), q309 character varying(50), q310 character varying(50), q311 character varying(50), q312 character varying(50), q313 character varying(50), q314 character varying(50), q315 character varying(50), q316 character varying(50), q317 character varying(50), q318 character varying(50), q319 character varying(50), q320 character varying(50), q321 character varying(50), q322 character varying(50), q323 character varying(50), q324 character varying(50), q325 character varying(50), q326 character varying(50), q327 character varying(50), q328 character varying(50), q4a character varying(50), q4b character varying(50), q4c character varying(50), q4d character varying(50), q4e character varying(50), q4f character varying(50), q4g character varying(50), q4h character varying(50), q501 character varying(50), q502 character varying(50), q503 character varying(50), q504 character varying(50), q505 character varying(50), q506 character varying(50), q507 character varying(50), q508 character varying(50), q509 character varying(50), q510 character varying(50), q511 character varying(50), q512 character varying(50), q513 character varying(50), q514 character varying(50), q601 character varying(50), q602 character varying(50), q603 character varying(50), q604 character varying(50), q605 character varying(50), q606 character varying(50), q607 character varying(50), q608 character varying(50), q609 character varying(50), q610 character varying(50), q611 character varying(50), q612 character varying(50), q613 character varying(50), q614 character varying(50), q615 character varying(50), q616 character varying(50), q617 character varying(50), q618 character varying(50), q619 character varying(50), q620 character varying(50), q701 character varying(50), q702 character varying(50), q703 character varying(50), q704 character varying(50), q705 character varying(50), q706 character varying(50), q707 character varying(50), q708 character varying(50), q709 character varying(50), q710 character varying(50), q711 character varying(50), q712 character varying(50), q713 character varying(50), q714 character varying(50), q715 character varying(50), q716 character varying(50), q717 character varying(50), q718 character varying(50), q719 character varying(50), q720 character varying(50), q801 character varying(50), q802 character varying(50), q803 character varying(50), q804 character varying(50), q805 character varying(50), q806 character varying(50), q807 character varying(50), q808 character varying(50), q809 character varying(50), q810 character varying(50), q811 character varying(50), q812 character varying(50), q813 character varying(50), q814 character varying(50), q815 character varying(50), q816 character varying(50), q817 character varying(50), q818 character varying(50), q901 character varying(50), q902 character varying(50), q903 character varying(50), q904 character varying(50), q905 character varying(50), q906 character varying(50), q907 character varying(50), q908 character varying(50), q909 character varying(50), q910 character varying(50), q10a01 character varying(50), q10a02 character varying(50), q10a03 character varying(50), q10a04 character varying(50), q10a05 character varying(50), q10a06 character varying(50), q10a07 character varying(50), q10a08 character varying(50), q10a09 character varying(50), q10a10 character varying(50), q10a11 character varying(50), q10a12 character varying(50), q10a13 character varying(50), q10a14 character varying(50), q10a15 character varying(50), q10a16 character varying(50), q10a17 character varying(50), q10a18 character varying(50), q10a19 character varying(50), q10a20 character varying(50), q10a21 character varying(50), q10a22 character varying(50), q10a23 character varying(50), q10a24 character varying(50), q10a25 character varying(50), q10a26 character varying(50), q10a27 character varying(50), q10a28 character varying(50), q10b01 character varying(50), q10b02 character varying(50), q10b03 character varying(50), q10b04 character varying(50), q10b05 character varying(50), q10b06 character varying(50), q10b07 character varying(50), q10b08 character varying(50), q10b09 character varying(50), q10b10 character varying(50), q10b11 character varying(50), q10b12 character varying(50), q10b13 character varying(50), q10b14 character varying(50), q10b15 character varying(50), q10b16 character varying(50), q10b17 character varying(50), q10b18 character varying(50), q10b19 character varying(50), q10b20 character varying(50), q10b21 character varying(50), q11a character varying(50), q11b01 character varying(50), q11b02 character varying(50), q11b03 character varying(50), q11b04 character varying(50), q11b05 character varying(50), q11b06 character varying(50), q11b07 character varying(50), q11b08 character varying(50), q11b09 character varying(50), q11b10 character varying(50), q11b11 character varying(50), q11b12 character varying(50), q11b13 character varying(50), q11b14 character varying(50), q11b15 character varying(50), q11b16 character varying(50), q11b17 character varying(50), q11b18 character varying(50), q11b19 character varying(50), q11b20 character varying(50), q11b21 character varying(50), q11b22 character varying(50), q11b23 character varying(50), csex character varying(50), cage2 character varying(50), cage6 character varying(50), cage8 character varying(50), class3 character varying(50), class41 character varying(50), class42 character varying(50), class43 character varying(50), class44 character varying(50), class45 character varying(50), class46 character varying(50), class5 character varying(50), cmari1 character varying(50), cwork1 character varying(50), cwork5 character varying(50), child2 character varying(50), child51 character varying(50), child52 character varying(50), child53 character varying(50), child54 character varying(50), child55 character varying(50), chsex1 character varying(50), chsex2 character varying(50), cads character varying(50), chhs character varying(50), cnet21 character varying(50), cnet22 character varying(50), cnet23 character varying(50), cnet3 character varying(50), cnet01 character varying(50), cnet02 character varying(50), cnet03 character varying(50), cnet04 character varying(50), cnet05 character varying(50), cnet06 character varying(50), cnet07 character varying(50), cnet08 character varying(50), cnet09 character varying(50), cnet10 character varying(50), cnet11 character varying(50), cnet12 character varying(50), cnet13 character varying(50), cnet14 character varying(50), cnet15 character varying(50), cnet16 character varying(50), cnet17 character varying(50), satcab81 character varying(50), satcab82 character varying(50), satcab83 character varying(50), cphone5 character varying(50), cten character varying(50), rural2 character varying(50), country1 character varying(50), gor character varying(50), govreg3 character varying(50), govreg12 character varying(50), ceth character varying(50), ceth3 character varying(50), breainac character varying(50), breadev1 character varying(50), breadev2 character varying(50), breadev3 character varying(50), breadev4 character varying(50), breadev5 character varying(50), breadev6 character varying(50), breadev7 character varying(50), breatvt1 character varying(50), breatvt2 character varying(50), breatvt3 character varying(50), breb1q32 character varying(50), breaq1q1 character varying(50), breaq1q2 character varying(50), breq1q11 character varying(50), breq1q12 character varying(50), breq1q21 character varying(50), breq1q22 character varying(50), brq1q211 character varying(50), brq1q212 character varying(50), bremus01 character varying(50), bremus02 character varying(50), bremus03 character varying(50), bremus04 character varying(50), bremus05 character varying(50), bremus06 character varying(50), bremus07 character varying(50), bremus08 character varying(50), bremus09 character varying(50), bremus10 character varying(50), bremus11 character varying(50), bremus12 character varying(50), bremus13 character varying(50), bremus14 character varying(50), bremus15 character varying(50), bremus16 character varying(50), bremus17 character varying(50), bremus18 character varying(50), bremus19 character varying(50), brvide01 character varying(50), brvide02 character varying(50), brvide03 character varying(50), brvide04 character varying(50), brvide05 character varying(50), brvide06 character varying(50), brvide07 character varying(50), brvide08 character varying(50), brvide09 character varying(50), brvide10 character varying(50), brvide11 character varying(50), brvide12 character varying(50), brvide13 character varying(50), bresof01 character varying(50), bresof02 character varying(50), bresof03 character varying(50), bresof04 character varying(50), bresof05 character varying(50), bresof06 character varying(50), bresof07 character varying(50), bresof08 character varying(50), bresof09 character varying(50), bresof10 character varying(50), bresof11 character varying(50), bresof12 character varying(50), bresof13 character varying(50), brefil01 character varying(50), brefil02 character varying(50), brefil03 character varying(50), brefil04 character varying(50), brefil05 character varying(50), brefil06 character varying(50), brefil07 character varying(50), brefil08 character varying(50), brefil09 character varying(50), brefil10 character varying(50), brefil11 character varying(50), brefil12 character varying(50), brefil13 character varying(50), brefil14 character varying(50), brefil15 character varying(50), brefil16 character varying(50), brefil17 character varying(50), brefil18 character varying(50), brefil19 character varying(50), brtvpr01 character varying(50), brtvpr02 character varying(50), brtvpr03 character varying(50), brtvpr04 character varying(50), brtvpr05 character varying(50), brtvpr06 character varying(50), brtvpr07 character varying(50), brtvpr08 character varying(50), brtvpr09 character varying(50), brtvpr10 character varying(50), brtvpr11 character varying(50), brtvpr12 character varying(50), brtvpr13 character varying(50), breboo01 character varying(50), breboo02 character varying(50), breboo03 character varying(50), breboo04 character varying(50), breboo05 character varying(50), breboo06 character varying(50), breboo07 character varying(50), breboo08 character varying(50), breboo09 character varying(50), breboo10 character varying(50), breboo11 character varying(50), breboo12 character varying(50), breboo13 character varying(50), brcomb01 character varying(50), brcomb02 character varying(50), brcomb03 character varying(50), brcomb04 character varying(50), brcomb05 character varying(50), brcomb06 character varying(50), brcomb07 character varying(50), brcomb08 character varying(50), brcomb09 character varying(50), brcomb10 character varying(50), brcomb11 character varying(50), brcomb12 character varying(50), brcomb13 character varying(50), brcom101 character varying(50), brcom102 character varying(50), brcom103 character varying(50), brcom104 character varying(50), brcom105 character varying(50), brcom106 character varying(50), brcom107 character varying(50), brcom108 character varying(50), brcom109 character varying(50), brcom110 character varying(50), brcom111 character varying(50), brcom112 character varying(50), brcom113 character varying(50), bremetho character varying(50), wave character varying(50), brmethow character varying(50), dummy character varying(50), wts_var real, cexage real, qb1totra real, qb1aotra real, qb11aira real, qb1aira1 real, qb1aiira real, qb1aira2 real, qb11avra real, qb1totr1 real, qb21aira real, qb1aira3 real, qb1aira4 real, qb1totr2 real, qb31aira real, qb1aira5 real, qb1totr3 real, qb1aotr1 real, qb41aira real, qb1aira6 real, qb1aira7 real, qb1aira8 real, qb41avra real, qb1avra1 real, qb1avira real, qb1avir1 real, qb1totr4 real, qb51aira real, qb1aira9 real, qb1air10 real, qb1air11 real, qb51avra real, qb1totr5 real, qb61aira real, qb1air12 real, qb1air13 real, qb3totra real, qb3totr1 real, qb3totr2 real, qb3totr3 real, qb3totr4 real, qb3totr5 real, qb13a_ra real, qb23a_ra real, qb33a_ra real, qb43a_ra real, qb53a_ra real, qb63a_ra real, qb13b_ra real, qb23b_ra real, qb33b_ra real, qb43b_ra real, qb53b_ra real, qb63b_ra real, qb13abra real, qb23abra real, qb33abra real, qb43abra real, qb53abra real, qb63abra real, qb15a_ra real, qb25a_ra real, qb35a_ra real, qb45a_ra real, qb55a_ra real, qb65a_ra real, qb1_6raw real, qb2_6raw real, qb3_6raw real, qb4_6raw real, qb5_6raw real, qb6_6raw real, qb15b_ra real, qb25b_ra real, qb35b_ra real, qb45b_ra real, qb55b_ra real, qb65b_ra real, qb45c_ra real, qb1_7raw real, qb2_7raw real, qb3_7raw real, qb4_7raw real, qb5_7raw real, qb6_7raw real, qb17b_ra real, qb47b_ra real, qb7_tora real, qb7btora real, qb7tora1 real, qb7tora2 real, qb7tora3 real, qb7btor1 real, qb7tora4 real, qb7tora5 real, qb13c1ra real, qb13c2ra real, qb3c1cra real, qb23c_ra real, qb33c_ra real, qb43c_ra real, qb53c_ra real, qb63c_ra real, qb13d_ra real, qb23d_ra real, qb33d_ra real, qb43d_ra real, qb53d_ra real, qb63d_ra real, qb3cprra real, qb5aprra real, qb6_prra real, qb5bprra real, qb7prpar real, qb7pralr real, qb7pfrer real, qbpralr1 real, qb5aprr1 real, qb6prra1 real, qb5bprr1 real, qbprfrr1 real, qbpralr2 real, qb5aprr2 real, qb6prra2 real, qb5bprr2 real, qbprfrr2 real, qbpralr3 real, qb5aprr3 real, qb6prra3 real, qb5bprr3 real, qb5cprra real, qb7prfrr real, qb7palr1 real, qbprfrr3 real, qbpralr4 real, qb5aprr4 real, qb6prra4 real, qb5bprr4 real, qbprfrr4 real, qbpralr5 real, qb5aprr5 real, qb6prra5 real, qb5bprr5 real, qbprfrr5 real, qbpralr6 real, qb1totr6 real, qb1physr real, qb1onpur real, qb1onsur real, qb1othra real, qb3sumra real, qbx3a_ra real, qbx3b_ra real, qbx3abra real, qb5anura real, qb65aprr real, qb66prra real, qb5bnura real, qb65bprr real, qb7bnura real, qb7bprra real, qb7numra real, qb7_prra real, qb7bnumr real, qb7bprr1 real, qb7anumr real, qb7aprra real, qbx3c_ra real, qbx3d_ra real, qb7qb3ra real, qb7qb3r1 real, qb7qb3r2 real, qb7qb3r3 real, qb7qb3r4 real, qb7qb3r5 real, qb7qb3r6 real, respnuma real, respnumb real, numbhh real, wmid1 real, weight_1 real, uniq_id real ); ALTER TABLE wave3 OWNER TO postgres; -- -- TOC entry 190 (class 1259 OID 629355) -- Name: wave4; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE wave4 ( qa_01 character varying(50), qa_02 character varying(50), qa_03 character varying(50), qa_04 character varying(50), qa_05 character varying(50), qa_06 character varying(50), qa_07 character varying(50), qa_08 character varying(50), qa_09 character varying(50), qa_10 character varying(50), qa_11 character varying(50), qa_12 character varying(50), qa_13 character varying(50), qa_14 character varying(50), qa_15 character varying(50), qa_16 character varying(50), qa_17 character varying(50), qb_01 character varying(50), qb_02 character varying(50), qb_03 character varying(50), qb_04 character varying(50), qb_05 character varying(50), qb_06 character varying(50), qb_07 character varying(50), qb_08 character varying(50), qb_09 character varying(50), qb_10 character varying(50), qb_11 character varying(50), qb_12 character varying(50), qc_01 character varying(50), qc_02 character varying(50), qc_03 character varying(50), qc_04 character varying(50), qc_05 character varying(50), qc_06 character varying(50), qc_07 character varying(50), qc_08 character varying(50), qc_09 character varying(50), qc_10 character varying(50), qc_11 character varying(50), qc_12 character varying(50), qc_13 character varying(50), qd character varying(50), q1a1 character varying(50), q1a2 character varying(50), q1a3 character varying(50), q1a4 character varying(50), q1a5 character varying(50), q1a6 character varying(50), q1a7 character varying(50), q1a8 character varying(50), q1a10 character varying(50), q1a11 character varying(50), q1a12 character varying(50), q1b1 character varying(50), q1b2 character varying(50), q1b3 character varying(50), q1b4 character varying(50), q1b5 character varying(50), q1b6 character varying(50), q1b7 character varying(50), q1b8 character varying(50), q1b10 character varying(50), q1b11 character varying(50), q1b12 character varying(50), q1c1 character varying(50), q1c2 character varying(50), q1c3 character varying(50), q1c4 character varying(50), q1c5 character varying(50), q1c6 character varying(50), q1c7 character varying(50), q1c8 character varying(50), q1c10 character varying(50), q1c11 character varying(50), q1c12 character varying(50), q2a1 character varying(50), q2a2 character varying(50), q2a3 character varying(50), q2a4 character varying(50), q2a5 character varying(50), q2a6 character varying(50), q2a7 character varying(50), q2a8 character varying(50), q2a10 character varying(50), q2a11 character varying(50), q2a12 character varying(50), q2b1 character varying(50), q2b2 character varying(50), q2b3 character varying(50), q2b4 character varying(50), q2b5 character varying(50), q2b6 character varying(50), q2b7 character varying(50), q2b8 character varying(50), q2b10 character varying(50), q2b11 character varying(50), q2b12 character varying(50), q2c1 character varying(50), q2c2 character varying(50), q2c3 character varying(50), q2c4 character varying(50), q2c5 character varying(50), q2c6 character varying(50), q2c7 character varying(50), q2c8 character varying(50), q2c10 character varying(50), q2c11 character varying(50), q2c12 character varying(50), q3a1 character varying(50), q3a2 character varying(50), q3a3 character varying(50), q3a4 character varying(50), q3a6 character varying(50), q3a7 character varying(50), q3a8 character varying(50), q3a10 character varying(50), q3b1 character varying(50), q3b2 character varying(50), q3b3 character varying(50), q3b4 character varying(50), q3b6 character varying(50), q3b7 character varying(50), q3b8 character varying(50), q3b10 character varying(50), q3c1 character varying(50), q3c2 character varying(50), q3c3 character varying(50), q3c4 character varying(50), q3c6 character varying(50), q3c7 character varying(50), q3c8 character varying(50), q3c10 character varying(50), qb1_1total character varying(50), qb1_1aother character varying(50), qb1_1ai character varying(50), qb1_1aii character varying(50), qb1_1aiii character varying(50), qb1_1aiva character varying(50), qb1_1ava character varying(50), qb1_2a character varying(50), qb1_2b character varying(50), qb1_2c character varying(50), qb1_3total character varying(50), qb1_3a character varying(50), qb1_3b character varying(50), qb1_3ab character varying(50), qb1_5a character varying(50), qb1_5a_pro character varying(50), qb1_5ai character varying(50), qb1_5ai_pro character varying(50), qb1_6 character varying(50), qb1_6_pro character varying(50), qb1_5b character varying(50), qb1_5b_pro character varying(50), qb1_7b character varying(50), qb1_7_pro_b1 character varying(50), qb1_7 character varying(50), qb1_7_pro_a1 character varying(50), qb1_7b_t character varying(50), qb1_7_pro_b2 character varying(50), qb1_7_t character varying(50), qb1_7_pro_a2 character varying(50), qb1_3c01 character varying(50), qb1_3c02 character varying(50), qb1_3c12 character varying(50), qb1_3c_pro character varying(50), qb1_3d character varying(50), qb1_430 character varying(50), qb1_8a_01flt_a character varying(50), qb1_8a_02flt_a character varying(50), qb1_8a_03flt_a character varying(50), qb1_8a_04flt_a character varying(50), qb1_8a_05flt_a character varying(50), qb1_8a_01a character varying(50), qb1_8a_02a character varying(50), qb1_8a_03a character varying(50), qb1_8a_04a character varying(50), qb1_8a_05a character varying(50), qb1_8a_01e character varying(50), qb1_8a_02e character varying(50), qb1_8a_03e character varying(50), qb1_8a_04e character varying(50), qb1_8a_05e character varying(50), qb1_8a_01f character varying(50), qb1_8a_02f character varying(50), qb1_8a_03f character varying(50), qb1_8a_04f character varying(50), qb1_8a_05f character varying(50), qb1_8b_01flt_a character varying(50), qb1_8b_02flt_a character varying(50), qb1_8b_03flt_a character varying(50), qb1_8b_04flt_a character varying(50), qb1_8b_05flt_a character varying(50), qb1_8b_01a character varying(50), qb1_8b_02a character varying(50), qb1_8b_03a character varying(50), qb1_8b_04a character varying(50), qb1_8b_05a character varying(50), qb1_8b_01e character varying(50), qb1_8b_02e character varying(50), qb1_8b_03e character varying(50), qb1_8b_04e character varying(50), qb1_8b_05e character varying(50), qb1_8b_01f character varying(50), qb1_8b_02f character varying(50), qb1_8b_03f character varying(50), qb1_8b_04f character varying(50), qb1_8b_05f character varying(50), qb2_1total character varying(50), qb2_1ai character varying(50), qb2_1aiii character varying(50), qb2_1aiia character varying(50), qb2_2a character varying(50), qb2_2b character varying(50), qb2_2c character varying(50), qb2_3total character varying(50), qb2_3a character varying(50), qb2_3b character varying(50), qb2_3ab character varying(50), qb2_5a character varying(50), qb2_5a_pro character varying(50), qb2_5ai character varying(50), qb2_5ai_pro character varying(50), qb2_6 character varying(50), qb2_6_pro character varying(50), qb2_5b character varying(50), qb2_5b_pro character varying(50), qb2_7 character varying(50), qb2_7_t character varying(50), qb2_7_pro_a character varying(50), qb2_7_pro_b character varying(50), qb2_3c character varying(50), qb2_3d character varying(50), qb2_422 character varying(50), qb3_1total character varying(50), qb3_1ai character varying(50), qb3_1aiia character varying(50), qb3_2a character varying(50), qb3_2b character varying(50), qb3_2c character varying(50), qb3_3total character varying(50), qb3_3a character varying(50), qb3_3b character varying(50), qb3_3ab character varying(50), qb3_5a character varying(50), qb3_5a_pro character varying(50), qb3_5ai character varying(50), qb3_5ai_pro character varying(50), qb3_6 character varying(50), qb3_6_pro character varying(50), qb3_5b character varying(50), qb3_5b_pro character varying(50), qb3_7 character varying(50), qb3_7_t character varying(50), qb3_7_pro_a character varying(50), qb3_7_pro_b character varying(50), qb3_3c character varying(50), qb3_3d character varying(50), qb4_1total character varying(50), qb4_1other character varying(50), qb4_1ai character varying(50), qb4_1aii character varying(50), qb4_1aiii character varying(50), qb4_1aiv character varying(50), qb4_1av character varying(50), qb4_1avi character varying(50), qb4_2a character varying(50), qb4_2b character varying(50), qb4_2c character varying(50), qb4_3total character varying(50), qb4_3a character varying(50), qb4_3b character varying(50), qb4_3ab character varying(50), qb4_5a character varying(50), qb4_5a_pro character varying(50), qb4_5ai character varying(50), qb4_5ai_pro character varying(50), qb4_6 character varying(50), qb4_6_pro character varying(50), qb4_5b character varying(50), qb4_5b_pro character varying(50), qb4_5c character varying(50), qb4_5c_pro character varying(50), qb4_7b character varying(50), qb4_7_pro_b1 character varying(50), qb4_7 character varying(50), qb4_7_pro_a1 character varying(50), qb4_7b_t character varying(50), qb4_7_pro_b2 character varying(50), qb4_7_t character varying(50), qb4_7_pro_a2 character varying(50), qb4_3c character varying(50), qb4_3d character varying(50), qb4_427 character varying(50), qb4_8a_01flt_a character varying(50), qb4_8a_02flt_a character varying(50), qb4_8a_03flt_a character varying(50), qb4_8a_04flt_a character varying(50), qb4_8a_05flt_a character varying(50), qb4_8a_01a character varying(50), qb4_8a_02a character varying(50), qb4_8a_03a character varying(50), qb4_8a_04a character varying(50), qb4_8a_05a character varying(50), qb4_8a_01e character varying(50), qb4_8a_02e character varying(50), qb4_8a_03e character varying(50), qb4_8a_04e character varying(50), qb4_8a_05e character varying(50), qb4_8a_01f character varying(50), qb4_8a_02f character varying(50), qb4_8a_03f character varying(50), qb4_8a_04f character varying(50), qb4_8a_05f character varying(50), qb4_8b_01flt_a character varying(50), qb4_8b_02flt_a character varying(50), qb4_8b_03flt_a character varying(50), qb4_8b_04flt_a character varying(50), qb4_8b_05flt_a character varying(50), qb4_8b_01a character varying(50), qb4_8b_02a character varying(50), qb4_8b_03a character varying(50), qb4_8b_04a character varying(50), qb4_8b_05a character varying(50), qb4_8b_01e character varying(50), qb4_8b_02e character varying(50), qb4_8b_03e character varying(50), qb4_8b_04e character varying(50), qb4_8b_05e character varying(50), qb4_8b_01f character varying(50), qb4_8b_02f character varying(50), qb4_8b_03f character varying(50), qb4_8b_04f character varying(50), qb4_8b_05f character varying(50), qb5_1total character varying(50), qb5_1ai character varying(50), qb5_1aii character varying(50), qb5_1aiii character varying(50), qb5_2a character varying(50), qb5_2b character varying(50), qb5_2c character varying(50), qb5_3total character varying(50), qb5_3a character varying(50), qb5_3b character varying(50), qb5_3ab character varying(50), qb5_5a character varying(50), qb5_5a_pro character varying(50), qb5_5ai character varying(50), qb5_5ai_pro character varying(50), qb5_6 character varying(50), qb5_6_pro character varying(50), qb5_5b character varying(50), qb5_5b_pro character varying(50), qb5_7 character varying(50), qb5_7_t character varying(50), qb5_7_pro_a character varying(50), qb5_7_pro_b character varying(50), qb5_3c character varying(50), qb5_3d character varying(50), qb6_1total character varying(50), qb6_1ai character varying(50), qb6_1aiii character varying(50), qb6_1aii character varying(50), qb6_2a character varying(50), qb6_2b character varying(50), qb6_2c character varying(50), qb6_3total character varying(50), qb6_3a character varying(50), qb6_3b character varying(50), qb6_3ab character varying(50), qb6_5a character varying(50), qb6_5a_pro character varying(50), qb6_5ai character varying(50), qb6_5ai_pro character varying(50), qb6_6 character varying(50), qb6_6_pro character varying(50), qb6_5b character varying(50), qb6_5b_pro character varying(50), qb6_7 character varying(50), qb6_7_t character varying(50), qb6_7_pro_a character varying(50), qb6_7_pro_b character varying(50), qb6_3c character varying(50), qb6_3d character varying(50), qb6_8a_01flt_a character varying(50), qb6_8a_02flt_a character varying(50), qb6_8a_03flt_a character varying(50), qb6_8a_04flt_a character varying(50), qb6_8a_05flt_a character varying(50), qb6_8a_01a character varying(50), qb6_8a_02a character varying(50), qb6_8a_03a character varying(50), qb6_8a_04a character varying(50), qb6_8a_05a character varying(50), qb6_8a_01e character varying(50), qb6_8a_02e character varying(50), qb6_8a_03e character varying(50), qb6_8a_04e character varying(50), qb6_8a_05e character varying(50), qb6_8a_01f character varying(50), qb6_8a_02f character varying(50), qb6_8a_03f character varying(50), qb6_8a_04f character varying(50), qb6_8a_05f character varying(50), qb6_8b_01flt_a character varying(50), qb6_8b_02flt_a character varying(50), qb6_8b_03flt_a character varying(50), qb6_8b_04flt_a character varying(50), qb6_8b_05flt_a character varying(50), qb6_8b_01a character varying(50), qb6_8b_02a character varying(50), qb6_8b_03a character varying(50), qb6_8b_04a character varying(50), qb6_8b_05a character varying(50), qb6_8b_01e character varying(50), qb6_8b_02e character varying(50), qb6_8b_03e character varying(50), qb6_8b_04e character varying(50), qb6_8b_05e character varying(50), qb6_8b_01f character varying(50), qb6_8b_02f character varying(50), qb6_8b_03f character varying(50), qb6_8b_04f character varying(50), qb6_8b_05f character varying(50), qbx_1total character varying(50), qbx_ai character varying(50), qbx_aii character varying(50), qbx_aiii character varying(50), qbx_av character varying(50), qbx_3total character varying(50), qbx_3a_tot character varying(50), qbx_3b_tot character varying(50), qbx_3ab_tot character varying(50), qbx_5a_tot character varying(50), qbx_5ai_tot character varying(50), qbx_5a_pro character varying(50), qbx_5ai_pro character varying(50), qbx_6_num character varying(50), qbx_6_pro character varying(50), qbx_5b_tot character varying(50), qbx_5b_pro character varying(50), qbx_7b_a character varying(50), qbx_7b_pro character varying(50), qbx_7a_a character varying(50), qbx_7_pro_a character varying(50), qbx_7a_b character varying(50), qbx_7_pro_b character varying(50), qbx_7a_ab character varying(50), qbx_7_pro_ab character varying(50), qbx_3c character varying(50), qbx_3d character varying(50), qbx_422 character varying(50), q31 character varying(50), q32 character varying(50), q33 character varying(50), q37 character varying(50), q38 character varying(50), q39 character varying(50), q310 character varying(50), q311 character varying(50), q313 character varying(50), q314 character varying(50), q315 character varying(50), q316 character varying(50), q317 character varying(50), q318 character varying(50), q319 character varying(50), q320 character varying(50), q321 character varying(50), q322 character varying(50), q323 character varying(50), q325 character varying(50), q326 character varying(50), q328 character varying(50), q330 character varying(50), q332 character varying(50), q333 character varying(50), q334 character varying(50), q335 character varying(50), q3x1 character varying(50), q3x5 character varying(50), q4a character varying(50), q4b character varying(50), q4c character varying(50), q4d character varying(50), q4e character varying(50), q4f character varying(50), q4g character varying(50), q4h character varying(50), q51 character varying(50), q52 character varying(50), q53 character varying(50), q54 character varying(50), q55 character varying(50), q56 character varying(50), q57 character varying(50), q58 character varying(50), q59 character varying(50), q511 character varying(50), q512 character varying(50), q513 character varying(50), q514 character varying(50), q518 character varying(50), q519 character varying(50), q61 character varying(50), q62 character varying(50), q63 character varying(50), q64 character varying(50), q65 character varying(50), q66 character varying(50), q67 character varying(50), q68 character varying(50), q69 character varying(50), q610 character varying(50), q611 character varying(50), q612 character varying(50), q613 character varying(50), q614 character varying(50), q615 character varying(50), q616 character varying(50), q617 character varying(50), q618 character varying(50), q619 character varying(50), q620 character varying(50), q624 character varying(50), q625 character varying(50), q626 character varying(50), q71 character varying(50), q72 character varying(50), q73 character varying(50), q74 character varying(50), q75 character varying(50), q76 character varying(50), q77 character varying(50), q78 character varying(50), q79 character varying(50), q710 character varying(50), q711 character varying(50), q712 character varying(50), q713 character varying(50), q714 character varying(50), q715 character varying(50), q716 character varying(50), q717 character varying(50), q718 character varying(50), q719 character varying(50), q720 character varying(50), q81 character varying(50), q82 character varying(50), q83 character varying(50), q84 character varying(50), q85 character varying(50), q86 character varying(50), q87 character varying(50), q88 character varying(50), q89 character varying(50), q810 character varying(50), q811 character varying(50), q812 character varying(50), q813 character varying(50), q814 character varying(50), q815 character varying(50), q816 character varying(50), q818 character varying(50), q91 character varying(50), q92 character varying(50), q93 character varying(50), q94 character varying(50), q96 character varying(50), q97 character varying(50), q98 character varying(50), q912 character varying(50), q10a1 character varying(50), q10a2 character varying(50), q10a3 character varying(50), q10a4 character varying(50), q10a5 character varying(50), q10a6 character varying(50), q10a7 character varying(50), q10a8 character varying(50), q10a9 character varying(50), q10a10 character varying(50), q10a11 character varying(50), q10a12 character varying(50), q10a13 character varying(50), q10a14 character varying(50), q10a15 character varying(50), q10a16 character varying(50), q10a17 character varying(50), q10a18 character varying(50), q10a19 character varying(50), q10a20 character varying(50), q10a21 character varying(50), q10a22 character varying(50), q10a23 character varying(50), q10a24 character varying(50), q10a25 character varying(50), q10a26 character varying(50), q10a27 character varying(50), q10a28 character varying(50), q10b1 character varying(50), q10b2 character varying(50), q10b3 character varying(50), q10b4 character varying(50), q10b5 character varying(50), q10b6 character varying(50), q10b7 character varying(50), q10b8 character varying(50), q10b9 character varying(50), q10b10 character varying(50), q10b11 character varying(50), q10b12 character varying(50), q10b13 character varying(50), q10b14 character varying(50), q10b15 character varying(50), q10b16 character varying(50), q10b17 character varying(50), q10b18 character varying(50), q10b19 character varying(50), q10b21 character varying(50), q10b22 character varying(50), q10b23 character varying(50), q10b24 character varying(50), q11a character varying(50), q11b1 character varying(50), q11b2 character varying(50), q11b3 character varying(50), q11b4 character varying(50), q11b5 character varying(50), q11b6 character varying(50), q11b7 character varying(50), q11b8 character varying(50), q11b9 character varying(50), q11b10 character varying(50), q11b11 character varying(50), q11b12 character varying(50), q11b13 character varying(50), q11b14 character varying(50), q11b15 character varying(50), q11b16 character varying(50), q11b17 character varying(50), q11b18 character varying(50), q11b19 character varying(50), q11b20 character varying(50), q11b21 character varying(50), q11b22 character varying(50), q11b23 character varying(50), q11b24 character varying(50), q11b25 character varying(50), q11b31 character varying(50), q11b32 character varying(50), csex character varying(50), cage2 character varying(50), cage6 character varying(50), cage8 character varying(50), class3 character varying(50), class41 character varying(50), class42 character varying(50), class43 character varying(50), class44 character varying(50), class45 character varying(50), class46 character varying(50), class5 character varying(50), cmari1 character varying(50), cwork1 character varying(50), cwork5 character varying(50), child2 character varying(50), child51 character varying(50), child52 character varying(50), child53 character varying(50), child54 character varying(50), child55 character varying(50), chsex1 character varying(50), chsex2 character varying(50), cads character varying(50), chhs character varying(50), cnet2_ character varying(50), cnet_01 character varying(50), cnet_02 character varying(50), cnet_03 character varying(50), cnet_04 character varying(50), cnet_06 character varying(50), cnet_07 character varying(50), cnet_08 character varying(50), cnet_10 character varying(50), cnet_12 character varying(50), cnet_13 character varying(50), satcab83 character varying(50), cphone5 character varying(50), cten character varying(50), rural2 character varying(50), country1 character varying(50), gor character varying(50), govreg3 character varying(50), ceth character varying(50), ceth3 character varying(50), break2_int_acc character varying(50), break2_device1 character varying(50), break2_device3 character varying(50), break2_device4 character varying(50), break2_device5 character varying(50), break2_device6 character varying(50), break2_device7 character varying(50), break2_tvtype1 character varying(50), break2_tvtype2 character varying(50), break2_tvtype3 character varying(50), break_b1_q3c1_2 character varying(50), break4_q1a_q2a1 character varying(50), break4_q1a_q2a2 character varying(50), break4_q1b_q2b1 character varying(50), break4_q1b_q2b2 character varying(50), break4_q1c_q2c1 character varying(50), break4_q1c_q2c2 character varying(50), break4_q1abc_q2abc1 character varying(50), break4_q1abc_q2abc2 character varying(50), break_music01 character varying(50), break_music02 character varying(50), break_music03 character varying(50), break_music04 character varying(50), break_music05 character varying(50), break_music06 character varying(50), break_music07 character varying(50), break_music08 character varying(50), break_music09 character varying(50), break_music10 character varying(50), break_music11 character varying(50), break_music12 character varying(50), break_music13 character varying(50), break_music14 character varying(50), break_videogames01 character varying(50), break_videogames02 character varying(50), break_videogames03 character varying(50), break_videogames04 character varying(50), break_videogames05 character varying(50), break_videogames06 character varying(50), break_videogames07 character varying(50), break_videogames08 character varying(50), break_videogames09 character varying(50), break_videogames10 character varying(50), break_videogames11 character varying(50), break_videogames12 character varying(50), break_videogames13 character varying(50), break_software01 character varying(50), break_software02 character varying(50), break_software03 character varying(50), break_software04 character varying(50), break_software05 character varying(50), break_software06 character varying(50), break_software07 character varying(50), break_software08 character varying(50), break_software09 character varying(50), break_software10 character varying(50), break_software11 character varying(50), break_software12 character varying(50), break_software13 character varying(50), break_films01 character varying(50), break_films02 character varying(50), break_films03 character varying(50), break_films04 character varying(50), break_films05 character varying(50), break_films06 character varying(50), break_films07 character varying(50), break_films08 character varying(50), break_films09 character varying(50), break_films10 character varying(50), break_films11 character varying(50), break_films12 character varying(50), break_films13 character varying(50), break_films14 character varying(50), break_tv_prgrms01 character varying(50), break_tv_prgrms02 character varying(50), break_tv_prgrms03 character varying(50), break_tv_prgrms04 character varying(50), break_tv_prgrms05 character varying(50), break_tv_prgrms06 character varying(50), break_tv_prgrms07 character varying(50), break_tv_prgrms08 character varying(50), break_tv_prgrms09 character varying(50), break_tv_prgrms10 character varying(50), break_tv_prgrms11 character varying(50), break_tv_prgrms12 character varying(50), break_tv_prgrms13 character varying(50), break_books01 character varying(50), break_books02 character varying(50), break_books03 character varying(50), break_books04 character varying(50), break_books05 character varying(50), break_books06 character varying(50), break_books07 character varying(50), break_books08 character varying(50), break_books09 character varying(50), break_books10 character varying(50), break_books11 character varying(50), break_books12 character varying(50), break_books13 character varying(50), break_combine_011 character varying(50), break_combine_012 character varying(50), break_combine_013 character varying(50), break_combine_014 character varying(50), break_combine_015 character varying(50), break_combine_016 character varying(50), break_combine_017 character varying(50), break_combine_018 character varying(50), break_combine_019 character varying(50), break_combine_110 character varying(50), break_combine_111 character varying(50), break_combine_112 character varying(50), break_combine_113 character varying(50), break_combine_021 character varying(50), break_combine_022 character varying(50), break_combine_023 character varying(50), break_combine_024 character varying(50), break_combine_025 character varying(50), break_combine_026 character varying(50), break_combine_027 character varying(50), break_combine_028 character varying(50), break_combine_029 character varying(50), break_combine_210 character varying(50), break_combine_211 character varying(50), break_combine_212 character varying(50), break_combine_213 character varying(50), break_methodology1 character varying(50), break_methodology4 character varying(50), break_methodology5 character varying(50), wts_var real, cexage real, qb1_1total_raw real, qb1_1aother_raw real, qb1_1ai_raw real, qb1_1aii_raw real, qb1_1aiii_raw real, qb1_1aiv_raw real, qb1_1av_raw real, qb2_1total_raw real, qb2_1ai_raw real, qb2_1aii_raw real, qb2_1aiii_raw real, qb3_1total_raw real, qb3_1ai_raw real, qb3_1aii_raw real, qb4_1total_raw real, qb4_1aother_raw real, qb4_1ai_raw real, qb4_1aii_raw real, qb4_1aiii_raw real, qb4_1aiv_raw real, qb4_1av_raw real, qb4_1avi_raw real, qb4_1avii_raw real, qb4_1aviii_raw real, qb5_1total_raw real, qb5_1ai_raw real, qb5_1aii_raw real, qb5_1aiii_raw real, qb5_1aiv_raw real, qb5_1av_raw real, qb6_1total_raw real, qb6_1ai_raw real, qb6_1aii_raw real, qb6_1aiii_raw real, qb1_3total_raw real, qb2_3total_raw real, qb3_3total_raw real, qb4_3total_raw real, qb5_3total_raw real, qb6_3total_raw real, qb1_3a_raw real, qb2_3a_raw real, qb3_3a_raw real, qb4_3a_raw real, qb5_3a_raw real, qb6_3a_raw real, qb1_3b_raw real, qb2_3b_raw real, qb3_3b_raw real, qb4_3b_raw real, qb5_3b_raw real, qb6_3b_raw real, qb1_3ab_raw real, qb2_3ab_raw real, qb3_3ab_raw real, qb4_3ab_raw real, qb5_3ab_raw real, qb6_3ab_raw real, qb1_5a_raw real, qb2_5a_raw real, qb3_5a_raw real, qb4_5a_raw real, qb5_5a_raw real, qb6_5a_raw real, qb1_5ai_raw real, qb2_5ai_raw real, qb3_5ai_raw real, qb4_5ai_raw real, qb5_5ai_raw real, qb6_5ai_raw real, qb1_6_raw real, qb2_6_raw real, qb3_6_raw real, qb4_6_raw real, qb5_6_raw real, qb6_6_raw real, qb1_5b_raw real, qb2_5b_raw real, qb3_5b_raw real, qb4_5b_raw real, qb5_5b_raw real, qb6_5b_raw real, qb4_5c_raw real, qb1_7_raw real, qb2_7_raw real, qb3_7_raw real, qb4_7_raw real, qb5_7_raw real, qb6_7_raw real, qb1_7b_raw real, qb4_7b_raw real, qb1_7_tot_raw real, qb1_7b_tot_raw real, qb2_7_tot_raw real, qb3_7_tot_raw real, qb4_7_tot_raw real, qb4_7b_tot_raw real, qb5_7_tot_raw real, qb6_7_tot_raw real, qb1_3c1_raw real, qb1_3c2_raw real, qb1_3c1c2_raw real, qb2_3c_raw real, qb3_3c_raw real, qb4_3c_raw real, qb5_3c_raw real, qb6_3c_raw real, qb1_3d_raw real, qb2_3d_raw real, qb3_3d_raw real, qb4_3d_raw real, qb5_3d_raw real, qb6_3d_raw real, qb1_3c_pro_raw real, qb1_5a_pro_raw real, qb1_5ai_pro_raw real, qb1_6_pro_raw real, qb1_5b_pro_raw real, qb1_7b_pro_paid_raw real, qb1_7b_pro_all_raw real, qb1_7_pro_free_raw real, qb1_7_pro_all_raw real, qb2_5a_pro_raw real, qb2_5ai_pro_raw real, qb2_6_pro_raw real, qb2_5b_pro_raw real, qb2_7_pro_free_raw real, qb2_7_pro_all_raw real, qb3_5a_pro_raw real, qb3_5ai_pro_raw real, qb3_6_pro_raw real, qb3_5b_pro_raw real, qb3_7_pro_free_raw real, qb3_7_pro_all_raw real, qb4_5a_pro_raw real, qb4_5ai_pro_raw real, qb4_6_pro_raw real, qb4_5b_pro_raw real, qb4_5c_pro_raw real, qb4_7b_pro_free_raw real, qb4_7b_pro_all_raw real, qb4_7_pro_free_raw real, qb4_7_pro_all_raw real, qb5_5a_pro_raw real, qb5_5ai_pro_raw real, qb5_6_pro_raw real, qb5_5b_pro_raw real, qb5_7_pro_free_raw real, qb5_7_pro_all_raw real, qb6_5a_pro_raw real, qb6_5ai_pro_raw real, qb6_6_pro_raw real, qb6_5b_pro_raw real, qb6_7_pro_free_raw real, qb6_7_pro_all_raw real, qbx_1_total_raw real, qbx_1_physical_raw real, qbx_1_onl_pur_raw real, qbx_1_onl_sub_raw real, qbx_1_other_raw real, qbx_3sum2_raw real, qbx_3a_raw real, qbx_3b_raw real, qbx_3ab_raw real, qbx_5a_numb_raw real, qbx_5ai_numb_raw real, qb1_6_5a_pro_raw real, qb1_6_5ai_pro_raw real, qbx_6 real, qb1_6_6_pro_raw real, qbx_5b_numb_raw real, qb1_6_5b_pro_raw real, qbx_7b_numb_raw real, qbx_7b_pro_raw real, qbx_7_numb_raw real, qbx_7_pro_raw real, qbx_7a_b_numb_raw real, qbx_7_b_pro_raw real, qbx_7a_a_numb_raw real, qbx_7_a_pro_raw real, qbx_3c_raw real, qbx_3d_raw real, qb1_7i_raw real, qb2_7i_raw real, qb3_7i_raw real, qb4_7i_raw real, qb5_7i_raw real, qb6_7i_raw real, qbx_7i_raw real, numbhh real, something character varying ); ALTER TABLE wave4 OWNER TO postgres; -- -- TOC entry 191 (class 1259 OID 629362) -- Name: wave5; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE wave5 ( qa_01 character varying(50), qa_02 character varying(50), qa_03 character varying(50), qa_04 character varying(50), qa_05 character varying(50), qa_06 character varying(50), qa_07 character varying(50), qa_08 character varying(50), qa_09 character varying(50), qa_10 character varying(50), qa_11 character varying(50), qa_12 character varying(50), qa_13 character varying(50), qa_14 character varying(50), qa_15 character varying(50), qa_16 character varying(50), qa_17 character varying(50), qb_01 character varying(50), qb_02 character varying(50), qb_03 character varying(50), qb_04 character varying(50), qb_05 character varying(50), qb_06 character varying(50), qb_07 character varying(50), qb_08 character varying(50), qb_09 character varying(50), qb_10 character varying(50), qb_11 character varying(50), qb_12 character varying(50), qc_01 character varying(50), qc_02 character varying(50), qc_03 character varying(50), qc_04 character varying(50), qc_05 character varying(50), qc_06 character varying(50), qc_07 character varying(50), qc_08 character varying(50), qc_09 character varying(50), qc_10 character varying(50), qc_11 character varying(50), qc_12 character varying(50), qc_13 character varying(50), qd character varying(50), qd3_1 character varying(50), qd3_2 character varying(50), qd3_3 character varying(50), qd3_4 character varying(50), qd3_5 character varying(50), qd3_6 character varying(50), q1a1 character varying(50), q1a2 character varying(50), q1a3 character varying(50), q1a4 character varying(50), q1a5 character varying(50), q1a6 character varying(50), q1a7 character varying(50), q1a8 character varying(50), q1a10 character varying(50), q1a11 character varying(50), q1a12 character varying(50), q1b1 character varying(50), q1b2 character varying(50), q1b3 character varying(50), q1b4 character varying(50), q1b5 character varying(50), q1b6 character varying(50), q1b7 character varying(50), q1b8 character varying(50), q1b10 character varying(50), q1b11 character varying(50), q1b12 character varying(50), q1c1 character varying(50), q1c2 character varying(50), q1c3 character varying(50), q1c4 character varying(50), q1c5 character varying(50), q1c6 character varying(50), q1c7 character varying(50), q1c8 character varying(50), q1c10 character varying(50), q1c11 character varying(50), q1c12 character varying(50), q2a1 character varying(50), q2a2 character varying(50), q2a3 character varying(50), q2a4 character varying(50), q2a5 character varying(50), q2a6 character varying(50), q2a7 character varying(50), q2a8 character varying(50), q2a10 character varying(50), q2a11 character varying(50), q2a12 character varying(50), q2b1 character varying(50), q2b2 character varying(50), q2b3 character varying(50), q2b4 character varying(50), q2b5 character varying(50), q2b6 character varying(50), q2b7 character varying(50), q2b8 character varying(50), q2b10 character varying(50), q2b11 character varying(50), q2b12 character varying(50), q2c1 character varying(50), q2c2 character varying(50), q2c3 character varying(50), q2c4 character varying(50), q2c5 character varying(50), q2c6 character varying(50), q2c7 character varying(50), q2c8 character varying(50), q2c10 character varying(50), q2c11 character varying(50), q2c12 character varying(50), q3a1 character varying(50), q3a2 character varying(50), q3a3 character varying(50), q3a4 character varying(50), q3a6 character varying(50), q3a7 character varying(50), q3a8 character varying(50), q3a10 character varying(50), q3b1 character varying(50), q3b2 character varying(50), q3b3 character varying(50), q3b4 character varying(50), q3b6 character varying(50), q3b7 character varying(50), q3b8 character varying(50), q3b10 character varying(50), q3c1 character varying(50), q3c2 character varying(50), q3c3 character varying(50), q3c4 character varying(50), q3c6 character varying(50), q3c7 character varying(50), q3c8 character varying(50), q3c10 character varying(50), qb1_1total character varying(50), qb1_1aother character varying(50), qb1_1ai character varying(50), qb1_1aii character varying(50), qb1_1aiii character varying(50), qb1_1aiva character varying(50), qb1_1ava character varying(50), qb1_2a character varying(50), qb1_2b character varying(50), qb1_2c character varying(50), qb1_3total character varying(50), qb1_3a character varying(50), qb1_3b character varying(50), qb1_3ab character varying(50), qb1_5a character varying(50), qb1_5a_pro character varying(50), qb1_5ai character varying(50), qb1_5ai_pro character varying(50), qb1_6 character varying(50), qb1_6_pro character varying(50), qb1_5b character varying(50), qb1_5b_pro character varying(50), qb1_7b character varying(50), qb1_7_pro_b1 character varying(50), qb1_7 character varying(50), qb1_7_pro_a1 character varying(50), qb1_7b_t character varying(50), qb1_7_pro_b2 character varying(50), qb1_7_t character varying(50), qb1_7_pro_a2 character varying(50), qb1_3c01 character varying(50), qb1_3c02 character varying(50), qb1_3c12 character varying(50), qb1_3c_pro character varying(50), qb1_3d character varying(50), qb1_041 character varying(50), qb1_042 character varying(50), qb1_045 character varying(50), qb1_046 character varying(50), qb1_047 character varying(50), qb1_048 character varying(50), qb1_049 character varying(50), qb1_410 character varying(50), qb1_411 character varying(50), qb1_412 character varying(50), qb1_413 character varying(50), qb1_414 character varying(50), qb1_415 character varying(50), qb1_416 character varying(50), qb1_417 character varying(50), qb1_418 character varying(50), qb1_419 character varying(50), qb1_420 character varying(50), qb1_421 character varying(50), qb1_422 character varying(50), qb1_423 character varying(50), qb1_424 character varying(50), qb1_425 character varying(50), qb1_426 character varying(50), qb1_427 character varying(50), qb1_428 character varying(50), qb1_429 character varying(50), qb1_430 character varying(50), qb1_431 character varying(50), qb1_432 character varying(50), qb1_433 character varying(50), qb1_435 character varying(50), qb1_436 character varying(50), qb1_437 character varying(50), qb1_438 character varying(50), qb1_440 character varying(50), qb1_441 character varying(50), qb1_443 character varying(50), qb1_444 character varying(50), qb1_445 character varying(50), qb1_446 character varying(50), qb1_8a_01flt_a character varying(50), qb1_8a_02flt_a character varying(50), qb1_8a_03flt_a character varying(50), qb1_8a_04flt_a character varying(50), qb1_8a_05flt_a character varying(50), qb1_8a_01a character varying(50), qb1_8a_02a character varying(50), qb1_8a_03a character varying(50), qb1_8a_04a character varying(50), qb1_8a_05a character varying(50), qb1_8a_01e character varying(50), qb1_8a_02e character varying(50), qb1_8a_03e character varying(50), qb1_8a_04e character varying(50), qb1_8a_05e character varying(50), qb1_8a_01f character varying(50), qb1_8a_02f character varying(50), qb1_8a_03f character varying(50), qb1_8a_04f character varying(50), qb1_8a_05f character varying(50), qb1_8b_01flt_a character varying(50), qb1_8b_02flt_a character varying(50), qb1_8b_03flt_a character varying(50), qb1_8b_04flt_a character varying(50), qb1_8b_05flt_a character varying(50), qb1_8b_01a character varying(50), qb1_8b_02a character varying(50), qb1_8b_03a character varying(50), qb1_8b_04a character varying(50), qb1_8b_05a character varying(50), qb1_8b_01e character varying(50), qb1_8b_02e character varying(50), qb1_8b_03e character varying(50), qb1_8b_04e character varying(50), qb1_8b_05e character varying(50), qb1_8b_01f character varying(50), qb1_8b_02f character varying(50), qb1_8b_03f character varying(50), qb1_8b_04f character varying(50), qb1_8b_05f character varying(50), qb2_1total character varying(50), qb2_1ai character varying(50), qb2_1aiii character varying(50), qb2_1aiia character varying(50), qb2_2a character varying(50), qb2_2b character varying(50), qb2_2c character varying(50), qb2_3total character varying(50), qb2_3a character varying(50), qb2_3b character varying(50), qb2_3ab character varying(50), qb2_5a character varying(50), qb2_5a_pro character varying(50), qb2_5ai character varying(50), qb2_5ai_pro character varying(50), qb2_6 character varying(50), qb2_6_pro character varying(50), qb2_5b character varying(50), qb2_5b_pro character varying(50), qb2_7 character varying(50), qb2_7_t character varying(50), qb2_7_pro_a character varying(50), qb2_7_pro_b character varying(50), qb2_3c character varying(50), qb2_3d character varying(50), qb2_041 character varying(50), qb2_042 character varying(50), qb2_043 character varying(50), qb2_044 character varying(50), qb2_045 character varying(50), qb2_046 character varying(50), qb2_047 character varying(50), qb2_048 character varying(50), qb2_049 character varying(50), qb2_410 character varying(50), qb2_411 character varying(50), qb2_412 character varying(50), qb2_413 character varying(50), qb2_414 character varying(50), qb2_415 character varying(50), qb2_416 character varying(50), qb2_417 character varying(50), qb2_418 character varying(50), qb2_419 character varying(50), qb2_420 character varying(50), qb2_421 character varying(50), qb2_422 character varying(50), qb2_423 character varying(50), qb2_424 character varying(50), qb2_425 character varying(50), qb2_426 character varying(50), qb2_427 character varying(50), qb2_429 character varying(50), qb2_430 character varying(50), qb2_432 character varying(50), qb2_433 character varying(50), qb2_434 character varying(50), qb3_1total character varying(50), qb3_1ai character varying(50), qb3_1aiia character varying(50), qb3_2a character varying(50), qb3_2b character varying(50), qb3_2c character varying(50), qb3_3total character varying(50), qb3_3a character varying(50), qb3_3b character varying(50), qb3_3ab character varying(50), qb3_5a character varying(50), qb3_5a_pro character varying(50), qb3_5ai character varying(50), qb3_5ai_pro character varying(50), qb3_6 character varying(50), qb3_6_pro character varying(50), qb3_5b character varying(50), qb3_5b_pro character varying(50), qb3_7 character varying(50), qb3_7_t character varying(50), qb3_7_pro_a character varying(50), qb3_7_pro_b character varying(50), qb3_3c character varying(50), qb3_3d character varying(50), qb3_041 character varying(50), qb3_042 character varying(50), qb3_043 character varying(50), qb3_044 character varying(50), qb3_045 character varying(50), qb3_046 character varying(50), qb3_047 character varying(50), qb3_048 character varying(50), qb3_049 character varying(50), qb3_410 character varying(50), qb3_411 character varying(50), qb3_412 character varying(50), qb3_413 character varying(50), qb3_414 character varying(50), qb3_415 character varying(50), qb3_416 character varying(50), qb3_417 character varying(50), qb3_418 character varying(50), qb3_419 character varying(50), qb3_420 character varying(50), qb3_422 character varying(50), qb3_424 character varying(50), qb3_425 character varying(50), qb3_426 character varying(50), qb4_1total character varying(50), qb4_1other character varying(50), qb4_1ai character varying(50), qb4_1aii character varying(50), qb4_1aiii character varying(50), qb4_1aiv character varying(50), qb4_1av character varying(50), qb4_1avi character varying(50), qb4_2a character varying(50), qb4_2b character varying(50), qb4_2c character varying(50), qb4_3total character varying(50), qb4_3a character varying(50), qb4_3b character varying(50), qb4_3ab character varying(50), qb4_5a character varying(50), qb4_5a_pro character varying(50), qb4_5ai character varying(50), qb4_5ai_pro character varying(50), qb4_6 character varying(50), qb4_6_pro character varying(50), qb4_5b character varying(50), qb4_5b_pro character varying(50), qb4_5c character varying(50), qb4_5c_pro character varying(50), qb4_7b character varying(50), qb4_7_pro_b1 character varying(50), qb4_7 character varying(50), qb4_7_pro_a1 character varying(50), qb4_7b_t character varying(50), qb4_7_pro_b2 character varying(50), qb4_7_t character varying(50), qb4_7_pro_a2 character varying(50), qb4_3c character varying(50), qb4_3d character varying(50), qb4_041 character varying(50), qb4_043 character varying(50), qb4_044 character varying(50), qb4_045 character varying(50), qb4_047 character varying(50), qb4_049 character varying(50), qb4_411 character varying(50), qb4_412 character varying(50), qb4_414 character varying(50), qb4_415 character varying(50), qb4_416 character varying(50), qb4_417 character varying(50), qb4_418 character varying(50), qb4_419 character varying(50), qb4_420 character varying(50), qb4_421 character varying(50), qb4_422 character varying(50), qb4_423 character varying(50), qb4_424 character varying(50), qb4_425 character varying(50), qb4_426 character varying(50), qb4_427 character varying(50), qb4_428 character varying(50), qb4_429 character varying(50), qb4_430 character varying(50), qb4_431 character varying(50), qb4_433 character varying(50), qb4_434 character varying(50), qb4_436 character varying(50), qb4_437 character varying(50), qb4_438 character varying(50), qb4_439 character varying(50), qb4_8a_01flt_a character varying(50), qb4_8a_02flt_a character varying(50), qb4_8a_03flt_a character varying(50), qb4_8a_04flt_a character varying(50), qb4_8a_05flt_a character varying(50), qb4_8a_01a character varying(50), qb4_8a_02a character varying(50), qb4_8a_03a character varying(50), qb4_8a_04a character varying(50), qb4_8a_05a character varying(50), qb4_8a_01e character varying(50), qb4_8a_02e character varying(50), qb4_8a_03e character varying(50), qb4_8a_04e character varying(50), qb4_8a_05e character varying(50), qb4_8a_01f character varying(50), qb4_8a_02f character varying(50), qb4_8a_03f character varying(50), qb4_8a_04f character varying(50), qb4_8a_05f character varying(50), qb4_8b_01flt_a character varying(50), qb4_8b_02flt_a character varying(50), qb4_8b_03flt_a character varying(50), qb4_8b_04flt_a character varying(50), qb4_8b_05flt_a character varying(50), qb4_8b_01a character varying(50), qb4_8b_02a character varying(50), qb4_8b_03a character varying(50), qb4_8b_04a character varying(50), qb4_8b_05a character varying(50), qb4_8b_01e character varying(50), qb4_8b_02e character varying(50), qb4_8b_03e character varying(50), qb4_8b_04e character varying(50), qb4_8b_05e character varying(50), qb4_8b_01f character varying(50), qb4_8b_02f character varying(50), qb4_8b_03f character varying(50), qb4_8b_04f character varying(50), qb4_8b_05f character varying(50), qb5_1total character varying(50), qb5_1ai character varying(50), qb5_1aii character varying(50), qb5_1aiii character varying(50), qb5_2a character varying(50), qb5_2b character varying(50), qb5_2c character varying(50), qb5_3total character varying(50), qb5_3a character varying(50), qb5_3b character varying(50), qb5_3ab character varying(50), qb5_5a character varying(50), qb5_5a_pro character varying(50), qb5_5ai character varying(50), qb5_5ai_pro character varying(50), qb5_6 character varying(50), qb5_6_pro character varying(50), qb5_5b character varying(50), qb5_5b_pro character varying(50), qb5_7 character varying(50), qb5_7_t character varying(50), qb5_7_pro_a character varying(50), qb5_7_pro_b character varying(50), qb5_3c character varying(50), qb5_3d character varying(50), qb5_041 character varying(50), qb5_042 character varying(50), qb5_044 character varying(50), qb5_045 character varying(50), qb5_046 character varying(50), qb5_047 character varying(50), qb5_048 character varying(50), qb5_410 character varying(50), qb5_411 character varying(50), qb5_412 character varying(50), qb5_413 character varying(50), qb5_414 character varying(50), qb5_415 character varying(50), qb5_417 character varying(50), qb5_418 character varying(50), qb5_419 character varying(50), qb5_420 character varying(50), qb5_422 character varying(50), qb5_423 character varying(50), qb5_424 character varying(50), qb5_425 character varying(50), qb5_426 character varying(50), qb5_427 character varying(50), qb5_428 character varying(50), qb5_429 character varying(50), qb5_431 character varying(50), qb5_432 character varying(50), qb5_433 character varying(50), qb5_435 character varying(50), qb5_436 character varying(50), qb5_438 character varying(50), qb5_439 character varying(50), qb6_1total character varying(50), qb6_1ai character varying(50), qb6_1aiii character varying(50), qb6_1aii character varying(50), qb6_2a character varying(50), qb6_2b character varying(50), qb6_2c character varying(50), qb6_3total character varying(50), qb6_3a character varying(50), qb6_3b character varying(50), qb6_3ab character varying(50), qb6_5a character varying(50), qb6_5a_pro character varying(50), qb6_5ai character varying(50), qb6_5ai_pro character varying(50), qb6_6 character varying(50), qb6_6_pro character varying(50), qb6_5b character varying(50), qb6_5b_pro character varying(50), qb6_7 character varying(50), qb6_7_t character varying(50), qb6_7_pro_a character varying(50), qb6_7_pro_b character varying(50), qb6_3c character varying(50), qb6_3d character varying(50), qb6_041 character varying(50), qb6_042 character varying(50), qb6_043 character varying(50), qb6_044 character varying(50), qb6_045 character varying(50), qb6_046 character varying(50), qb6_047 character varying(50), qb6_048 character varying(50), qb6_049 character varying(50), qb6_410 character varying(50), qb6_411 character varying(50), qb6_412 character varying(50), qb6_413 character varying(50), qb6_414 character varying(50), qb6_415 character varying(50), qb6_416 character varying(50), qb6_417 character varying(50), qb6_418 character varying(50), qb6_419 character varying(50), qb6_420 character varying(50), qb6_421 character varying(50), qb6_422 character varying(50), qb6_423 character varying(50), qb6_424 character varying(50), qb6_425 character varying(50), qb6_426 character varying(50), qb6_427 character varying(50), qb6_428 character varying(50), qb6_429 character varying(50), qb6_430 character varying(50), qb6_8a_01flt_a character varying(50), qb6_8a_02flt_a character varying(50), qb6_8a_03flt_a character varying(50), qb6_8a_04flt_a character varying(50), qb6_8a_05flt_a character varying(50), qb6_8a_01a character varying(50), qb6_8a_02a character varying(50), qb6_8a_03a character varying(50), qb6_8a_04a character varying(50), qb6_8a_05a character varying(50), qb6_8a_01e character varying(50), qb6_8a_02e character varying(50), qb6_8a_03e character varying(50), qb6_8a_04e character varying(50), qb6_8a_05e character varying(50), qb6_8a_01f character varying(50), qb6_8a_02f character varying(50), qb6_8a_03f character varying(50), qb6_8a_04f character varying(50), qb6_8a_05f character varying(50), qb6_8b_01flt_a character varying(50), qb6_8b_02flt_a character varying(50), qb6_8b_03flt_a character varying(50), qb6_8b_04flt_a character varying(50), qb6_8b_05flt_a character varying(50), qb6_8b_01a character varying(50), qb6_8b_02a character varying(50), qb6_8b_03a character varying(50), qb6_8b_04a character varying(50), qb6_8b_05a character varying(50), qb6_8b_01e character varying(50), qb6_8b_02e character varying(50), qb6_8b_03e character varying(50), qb6_8b_04e character varying(50), qb6_8b_05e character varying(50), qb6_8b_01f character varying(50), qb6_8b_02f character varying(50), qb6_8b_03f character varying(50), qb6_8b_04f character varying(50), qb6_8b_05f character varying(50), qb7_047 character varying(50), qb7_416 character varying(50), qb7_420 character varying(50), qb7_428 character varying(50), qb7_430 character varying(50), qbx_1total character varying(50), qbx_ai character varying(50), qbx_aii character varying(50), qbx_aiii character varying(50), qbx_av character varying(50), qbx_3total character varying(50), qbx_3a_tot character varying(50), qbx_3b_tot character varying(50), qbx_3ab_tot character varying(50), qbx_5a_tot character varying(50), qbx_5ai_tot character varying(50), qbx_5a_pro character varying(50), qbx_5ai_pro character varying(50), qbx_6_num character varying(50), qbx_6_pro character varying(50), qbx_5b_tot character varying(50), qbx_5b_pro character varying(50), qbx_7b_a character varying(50), qbx_7b_pro character varying(50), qbx_7a_a character varying(50), qbx_7_pro_a character varying(50), qbx_7a_b character varying(50), qbx_7_pro_b character varying(50), qbx_7a_ab character varying(50), qbx_7_pro_ab character varying(50), qbx_3c character varying(50), qbx_3d character varying(50), qbx_041 character varying(50), qbx_042 character varying(50), qbx_046 character varying(50), qbx_047 character varying(50), qbx_049 character varying(50), qbx_410 character varying(50), qbx_411 character varying(50), qbx_412 character varying(50), qbx_413 character varying(50), qbx_414 character varying(50), qbx_415 character varying(50), qbx_416 character varying(50), qbx_417 character varying(50), qbx_418 character varying(50), qbx_419 character varying(50), qbx_420 character varying(50), qbx_421 character varying(50), qbx_422 character varying(50), qbx_423 character varying(50), qbx_424 character varying(50), qbx_425 character varying(50), qbx_427 character varying(50), qbx_428 character varying(50), qbx_429 character varying(50), qbx_430 character varying(50), qbx_431 character varying(50), qbx_432 character varying(50), qbx_433 character varying(50), qbx_434 character varying(50), qbx_435 character varying(50), qbx_436 character varying(50), qbx_437 character varying(50), qbx_438 character varying(50), qbx_439 character varying(50), qbx_441 character varying(50), qbx_442 character varying(50), qbx_443 character varying(50), qbx_444 character varying(50), qbx_445 character varying(50), qbx_446 character varying(50), qbx_447 character varying(50), qbx_448 character varying(50), qbx_449 character varying(50), qbx_450 character varying(50), qbx_454 character varying(50), qbx_455 character varying(50), qbx_456 character varying(50), qbx_457 character varying(50), qbx_458 character varying(50), qbx_459 character varying(50), qbx_462 character varying(50), qbx_463 character varying(50), qbx_464 character varying(50), qbx_465 character varying(50), qbx_467 character varying(50), qbx_468 character varying(50), qbx_469 character varying(50), qbx_470 character varying(50), q31 character varying(50), q32 character varying(50), q33 character varying(50), q37 character varying(50), q38 character varying(50), q39 character varying(50), q310 character varying(50), q311 character varying(50), q313 character varying(50), q314 character varying(50), q315 character varying(50), q316 character varying(50), q317 character varying(50), q318 character varying(50), q319 character varying(50), q320 character varying(50), q321 character varying(50), q322 character varying(50), q323 character varying(50), q325 character varying(50), q326 character varying(50), q328 character varying(50), q330 character varying(50), q332 character varying(50), q333 character varying(50), q334 character varying(50), q335 character varying(50), q3x1 character varying(50), q3x5 character varying(50), q4a character varying(50), q4b character varying(50), q4c character varying(50), q4d character varying(50), q4e character varying(50), q4f character varying(50), q4g character varying(50), q4h character varying(50), q51 character varying(50), q52 character varying(50), q53 character varying(50), q54 character varying(50), q55 character varying(50), q56 character varying(50), q57 character varying(50), q58 character varying(50), q59 character varying(50), q511 character varying(50), q512 character varying(50), q513 character varying(50), q514 character varying(50), q515 character varying(50), q516 character varying(50), q517 character varying(50), q518 character varying(50), q519 character varying(50), q61 character varying(50), q62 character varying(50), q63 character varying(50), q64 character varying(50), q65 character varying(50), q66 character varying(50), q67 character varying(50), q68 character varying(50), q69 character varying(50), q610 character varying(50), q611 character varying(50), q612 character varying(50), q613 character varying(50), q614 character varying(50), q615 character varying(50), q616 character varying(50), q617 character varying(50), q618 character varying(50), q619 character varying(50), q620 character varying(50), q621 character varying(50), q622 character varying(50), q623 character varying(50), q624 character varying(50), q625 character varying(50), q626 character varying(50), q71 character varying(50), q72 character varying(50), q73 character varying(50), q74 character varying(50), q75 character varying(50), q76 character varying(50), q77 character varying(50), q78 character varying(50), q79 character varying(50), q710 character varying(50), q711 character varying(50), q712 character varying(50), q713 character varying(50), q714 character varying(50), q715 character varying(50), q716 character varying(50), q717 character varying(50), q718 character varying(50), q719 character varying(50), q720 character varying(50), q81 character varying(50), q82 character varying(50), q83 character varying(50), q84 character varying(50), q85 character varying(50), q86 character varying(50), q87 character varying(50), q88 character varying(50), q89 character varying(50), q810 character varying(50), q811 character varying(50), q812 character varying(50), q813 character varying(50), q814 character varying(50), q815 character varying(50), q816 character varying(50), q817 character varying(50), q818 character varying(50), q819 character varying(50), q820 character varying(50), q821 character varying(50), q822 character varying(50), q823 character varying(50), q824 character varying(50), q91 character varying(50), q92 character varying(50), q93 character varying(50), q94 character varying(50), q95 character varying(50), q96 character varying(50), q97 character varying(50), q98 character varying(50), q99 character varying(50), q910 character varying(50), q911 character varying(50), q912 character varying(50), q913 character varying(50), q914 character varying(50), q10a1 character varying(50), q10a2 character varying(50), q10a3 character varying(50), q10a4 character varying(50), q10a5 character varying(50), q10a6 character varying(50), q10a7 character varying(50), q10a8 character varying(50), q10a9 character varying(50), q10a10 character varying(50), q10a11 character varying(50), q10a12 character varying(50), q10a13 character varying(50), q10a14 character varying(50), q10a15 character varying(50), q10a16 character varying(50), q10a17 character varying(50), q10a18 character varying(50), q10a19 character varying(50), q10a20 character varying(50), q10a21 character varying(50), q10a22 character varying(50), q10a23 character varying(50), q10a24 character varying(50), q10a25 character varying(50), q10a26 character varying(50), q10a27 character varying(50), q10a28 character varying(50), q10b1 character varying(50), q10b2 character varying(50), q10b3 character varying(50), q10b4 character varying(50), q10b5 character varying(50), q10b6 character varying(50), q10b7 character varying(50), q10b8 character varying(50), q10b9 character varying(50), q10b10 character varying(50), q10b11 character varying(50), q10b12 character varying(50), q10b13 character varying(50), q10b14 character varying(50), q10b15 character varying(50), q10b16 character varying(50), q10b17 character varying(50), q10b18 character varying(50), q10b19 character varying(50), q10b20 character varying(50), q10b21 character varying(50), q10b22 character varying(50), q10b23 character varying(50), q10b24 character varying(50), q11a character varying(50), q11b1 character varying(50), q11b2 character varying(50), q11b3 character varying(50), q11b4 character varying(50), q11b5 character varying(50), q11b6 character varying(50), q11b7 character varying(50), q11b8 character varying(50), q11b9 character varying(50), q11b10 character varying(50), q11b11 character varying(50), q11b12 character varying(50), q11b13 character varying(50), q11b14 character varying(50), q11b15 character varying(50), q11b16 character varying(50), q11b17 character varying(50), q11b18 character varying(50), q11b19 character varying(50), q11b20 character varying(50), q11b21 character varying(50), q11b22 character varying(50), q11b23 character varying(50), q11b24 character varying(50), q11b25 character varying(50), q11b26 character varying(50), q11b27 character varying(50), q11b28 character varying(50), q11b29 character varying(50), q11b30 character varying(50), q11b31 character varying(50), q11b32 character varying(50), csex character varying(50), cage2 character varying(50), cage6 character varying(50), cage8 character varying(50), class3 character varying(50), class41 character varying(50), class42 character varying(50), class43 character varying(50), class44 character varying(50), class45 character varying(50), class46 character varying(50), class5 character varying(50), cmari1 character varying(50), cwork1 character varying(50), cwork5 character varying(50), child2 character varying(50), child51 character varying(50), child52 character varying(50), child53 character varying(50), child54 character varying(50), child55 character varying(50), chsex1 character varying(50), chsex2 character varying(50), cads character varying(50), chhs character varying(50), cnet2_ character varying(50), cnet_01 character varying(50), cnet_02 character varying(50), cnet_03 character varying(50), cnet_04 character varying(50), cnet_05 character varying(50), cnet_06 character varying(50), cnet_07 character varying(50), cnet_08 character varying(50), cnet_10 character varying(50), cnet_11 character varying(50), cnet_12 character varying(50), cnet_13 character varying(50), satcab81 character varying(50), satcab82 character varying(50), satcab83 character varying(50), cphone5 character varying(50), cten character varying(50), rural2 character varying(50), country1 character varying(50), gor character varying(50), govreg3 character varying(50), ceth character varying(50), ceth3 character varying(50), break2_int_acc character varying(50), break2_device1 character varying(50), break2_device3 character varying(50), break2_device4 character varying(50), break2_device5 character varying(50), break2_device6 character varying(50), break2_device7 character varying(50), break2_tvtype1 character varying(50), break2_tvtype2 character varying(50), break2_tvtype3 character varying(50), break_b1_q3c1_2 character varying(50), break4_q1a_q2a1 character varying(50), break4_q1a_q2a2 character varying(50), break4_q1b_q2b1 character varying(50), break4_q1b_q2b2 character varying(50), break4_q1c_q2c1 character varying(50), break4_q1c_q2c2 character varying(50), break4_q1abc_q2abc1 character varying(50), break4_q1abc_q2abc2 character varying(50), break_music01 character varying(50), break_music02 character varying(50), break_music03 character varying(50), break_music04 character varying(50), break_music05 character varying(50), break_music06 character varying(50), break_music07 character varying(50), break_music08 character varying(50), break_music09 character varying(50), break_music10 character varying(50), break_music11 character varying(50), break_music12 character varying(50), break_music13 character varying(50), break_music14 character varying(50), break_music15 character varying(50), break_music16 character varying(50), break_music17 character varying(50), break_music18 character varying(50), break_music19 character varying(50), break_videogames01 character varying(50), break_videogames02 character varying(50), break_videogames03 character varying(50), break_videogames04 character varying(50), break_videogames05 character varying(50), break_videogames06 character varying(50), break_videogames07 character varying(50), break_videogames08 character varying(50), break_videogames09 character varying(50), break_videogames10 character varying(50), break_videogames11 character varying(50), break_videogames12 character varying(50), break_videogames13 character varying(50), break_software01 character varying(50), break_software02 character varying(50), break_software03 character varying(50), break_software04 character varying(50), break_software05 character varying(50), break_software06 character varying(50), break_software07 character varying(50), break_software08 character varying(50), break_software09 character varying(50), break_software10 character varying(50), break_software11 character varying(50), break_software12 character varying(50), break_software13 character varying(50), break_films01 character varying(50), break_films02 character varying(50), break_films03 character varying(50), break_films04 character varying(50), break_films05 character varying(50), break_films06 character varying(50), break_films07 character varying(50), break_films08 character varying(50), break_films09 character varying(50), break_films10 character varying(50), break_films11 character varying(50), break_films12 character varying(50), break_films13 character varying(50), break_films14 character varying(50), break_films15 character varying(50), break_films16 character varying(50), break_films17 character varying(50), break_films18 character varying(50), break_films19 character varying(50), break_tv_prgrms01 character varying(50), break_tv_prgrms02 character varying(50), break_tv_prgrms03 character varying(50), break_tv_prgrms04 character varying(50), break_tv_prgrms05 character varying(50), break_tv_prgrms06 character varying(50), break_tv_prgrms07 character varying(50), break_tv_prgrms08 character varying(50), break_tv_prgrms09 character varying(50), break_tv_prgrms10 character varying(50), break_tv_prgrms11 character varying(50), break_tv_prgrms12 character varying(50), break_tv_prgrms13 character varying(50), break_books01 character varying(50), break_books02 character varying(50), break_books03 character varying(50), break_books04 character varying(50), break_books05 character varying(50), break_books06 character varying(50), break_books07 character varying(50), break_books08 character varying(50), break_books09 character varying(50), break_books10 character varying(50), break_books11 character varying(50), break_books12 character varying(50), break_books13 character varying(50), break_combine_011 character varying(50), break_combine_012 character varying(50), break_combine_013 character varying(50), break_combine_014 character varying(50), break_combine_015 character varying(50), break_combine_016 character varying(50), break_combine_017 character varying(50), break_combine_018 character varying(50), break_combine_019 character varying(50), break_combine_110 character varying(50), break_combine_111 character varying(50), break_combine_112 character varying(50), break_combine_113 character varying(50), break_combine_021 character varying(50), break_combine_022 character varying(50), break_combine_023 character varying(50), break_combine_024 character varying(50), break_combine_025 character varying(50), break_combine_026 character varying(50), break_combine_027 character varying(50), break_combine_028 character varying(50), break_combine_029 character varying(50), break_combine_210 character varying(50), break_combine_211 character varying(50), break_combine_212 character varying(50), break_combine_213 character varying(50), break_methodology2 character varying(50), break_methodology3 character varying(50), break_methodology4 character varying(50), break_methodology5 character varying(50), wts_var real, cexage real, numbhh real, something character varying ); ALTER TABLE wave5 OWNER TO postgres; -- -- TOC entry 189 (class 1259 OID 599654) -- Name: wave6; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE wave6 ( qa_01 character varying(50), qa_02 character varying(50), qa_03 character varying(50), qa_04 character varying(50), qa_05 character varying(50), qa_06 character varying(50), qa_07 character varying(50), qa_08 character varying(50), qa_09 character varying(50), qa_10 character varying(50), qa_11 character varying(50), qa_12 character varying(50), qa_13 character varying(50), qa_14 character varying(50), qa_15 character varying(50), qa_16 character varying(50), qa_17 character varying(50), qb_01 character varying(50), qb_02 character varying(50), qb_03 character varying(50), qb_04 character varying(50), qb_05 character varying(50), qb_06 character varying(50), qb_07 character varying(50), qb_08 character varying(50), qb_09 character varying(50), qb_10 character varying(50), qb_11 character varying(50), qb_12 character varying(50), qc_01 character varying(50), qc_02 character varying(50), qc_03 character varying(50), qc_04 character varying(50), qc_05 character varying(50), qc_06 character varying(50), qc_07 character varying(50), qc_08 character varying(50), qc_09 character varying(50), qc_10 character varying(50), qc_11 character varying(50), qc_12 character varying(50), qc_13 character varying(50), qd character varying(50), qd3_1 character varying(50), qd3_2 character varying(50), qd3_3 character varying(50), qd3_4 character varying(50), qd3_5 character varying(50), qd3_6 character varying(50), q1a1 character varying(50), q1a2 character varying(50), q1a3 character varying(50), q1a4 character varying(50), q1a5 character varying(50), q1a6 character varying(50), q1a7 character varying(50), q1a8 character varying(50), q1a9 character varying(50), q1a10 character varying(50), q1a11 character varying(50), q1a12 character varying(50), q1b1 character varying(50), q1b2 character varying(50), q1b3 character varying(50), q1b4 character varying(50), q1b5 character varying(50), q1b6 character varying(50), q1b7 character varying(50), q1b8 character varying(50), q1b9 character varying(50), q1b10 character varying(50), q1b11 character varying(50), q1b12 character varying(50), q1c1 character varying(50), q1c2 character varying(50), q1c3 character varying(50), q1c4 character varying(50), q1c5 character varying(50), q1c6 character varying(50), q1c7 character varying(50), q1c8 character varying(50), q1c9 character varying(50), q1c10 character varying(50), q1c11 character varying(50), q1c12 character varying(50), q2a1 character varying(50), q2a2 character varying(50), q2a3 character varying(50), q2a4 character varying(50), q2a5 character varying(50), q2a6 character varying(50), q2a7 character varying(50), q2a8 character varying(50), q2a9 character varying(50), q2a10 character varying(50), q2a11 character varying(50), q2a12 character varying(50), q2b1 character varying(50), q2b2 character varying(50), q2b3 character varying(50), q2b4 character varying(50), q2b5 character varying(50), q2b6 character varying(50), q2b7 character varying(50), q2b8 character varying(50), q2b9 character varying(50), q2b10 character varying(50), q2b11 character varying(50), q2b12 character varying(50), q2c1 character varying(50), q2c2 character varying(50), q2c3 character varying(50), q2c4 character varying(50), q2c5 character varying(50), q2c6 character varying(50), q2c7 character varying(50), q2c8 character varying(50), q2c9 character varying(50), q2c10 character varying(50), q2c11 character varying(50), q2c12 character varying(50), q3a1 character varying(50), q3a2 character varying(50), q3a3 character varying(50), q3a4 character varying(50), q3a5 character varying(50), q3a6 character varying(50), q3a7 character varying(50), q3a8 character varying(50), q3a9 character varying(50), q3a10 character varying(50), q3b1 character varying(50), q3b2 character varying(50), q3b3 character varying(50), q3b4 character varying(50), q3b5 character varying(50), q3b6 character varying(50), q3b7 character varying(50), q3b8 character varying(50), q3b9 character varying(50), q3b10 character varying(50), q3c1 character varying(50), q3c2 character varying(50), q3c3 character varying(50), q3c4 character varying(50), q3c5 character varying(50), q3c6 character varying(50), q3c7 character varying(50), q3c8 character varying(50), q3c9 character varying(50), q3c10 character varying(50), qb1_1total character varying(50), qb1_1aother character varying(50), qb1_1ai character varying(50), qb1_1aii character varying(50), qb1_1aiii character varying(50), qb1_1aiva character varying(50), qb1_1ava character varying(50), qb1_2a character varying(50), qb1_2b character varying(50), qb1_2c character varying(50), qb1_3total character varying(50), qb1_3a character varying(50), qb1_3b character varying(50), qb1_3ab character varying(50), qb1_5a character varying(50), qb1_5a_pro character varying(50), qb1_5ai character varying(50), qb1_5ai_pro character varying(50), qb1_6 character varying(50), qb1_6_pro character varying(50), qb1_5b character varying(50), qb1_5b_pro character varying(50), qb1_7b character varying(50), qb1_7_pro_b1 character varying(50), qb1_7 character varying(50), qb1_7_pro_a1 character varying(50), qb1_7b_t character varying(50), qb1_7_pro_b2 character varying(50), qb1_7_t character varying(50), qb1_7_pro_a2 character varying(50), qb1_3c01 character varying(50), qb1_3c02 character varying(50), qb1_3c12 character varying(50), qb1_3c_pro character varying(50), qb1_3d character varying(50), qb1_041 character varying(50), qb1_042 character varying(50), qb1_043 character varying(50), qb1_044 character varying(50), qb1_045 character varying(50), qb1_046 character varying(50), qb1_047 character varying(50), qb1_048 character varying(50), qb1_049 character varying(50), qb1_410 character varying(50), qb1_411 character varying(50), qb1_412 character varying(50), qb1_413 character varying(50), qb1_414 character varying(50), qb1_415 character varying(50), qb1_416 character varying(50), qb1_417 character varying(50), qb1_418 character varying(50), qb1_419 character varying(50), qb1_420 character varying(50), qb1_421 character varying(50), qb1_422 character varying(50), qb1_423 character varying(50), qb1_424 character varying(50), qb1_425 character varying(50), qb1_426 character varying(50), qb1_427 character varying(50), qb1_428 character varying(50), qb1_429 character varying(50), qb1_430 character varying(50), qb1_431 character varying(50), qb1_432 character varying(50), qb1_433 character varying(50), qb1_434 character varying(50), qb1_435 character varying(50), qb1_436 character varying(50), qb1_437 character varying(50), qb1_438 character varying(50), qb1_439 character varying(50), qb1_440 character varying(50), qb1_441 character varying(50), qb1_442 character varying(50), qb1_443 character varying(50), qb1_444 character varying(50), qb1_445 character varying(50), qb1_446 character varying(50), qb1_8a_01flt_a character varying(50), qb1_8a_02flt_a character varying(50), qb1_8a_03flt_a character varying(50), qb1_8a_04flt_a character varying(50), qb1_8a_05flt_a character varying(50), qb1_8a_01a character varying(50), qb1_8a_02a character varying(50), qb1_8a_03a character varying(50), qb1_8a_04a character varying(50), qb1_8a_05a character varying(50), qb1_8a_01e character varying(50), qb1_8a_02e character varying(50), qb1_8a_03e character varying(50), qb1_8a_04e character varying(50), qb1_8a_05e character varying(50), qb1_8a_01f character varying(50), qb1_8a_02f character varying(50), qb1_8a_03f character varying(50), qb1_8a_04f character varying(50), qb1_8a_05f character varying(50), qb1_8b_01flt_a character varying(50), qb1_8b_02flt_a character varying(50), qb1_8b_03flt_a character varying(50), qb1_8b_04flt_a character varying(50), qb1_8b_05flt_a character varying(50), qb1_8b_01a character varying(50), qb1_8b_02a character varying(50), qb1_8b_03a character varying(50), qb1_8b_04a character varying(50), qb1_8b_05a character varying(50), qb1_8b_01e character varying(50), qb1_8b_02e character varying(50), qb1_8b_03e character varying(50), qb1_8b_04e character varying(50), qb1_8b_05e character varying(50), qb1_8b_01f character varying(50), qb1_8b_02f character varying(50), qb1_8b_03f character varying(50), qb1_8b_04f character varying(50), qb1_8b_05f character varying(50), qb2_1total character varying(50), qb2_1ai character varying(50), qb2_1aiii character varying(50), qb2_1aiia character varying(50), qb2_2a character varying(50), qb2_2b character varying(50), qb2_2c character varying(50), qb2_3total character varying(50), qb2_3a character varying(50), qb2_3b character varying(50), qb2_3ab character varying(50), qb2_5a character varying(50), qb2_5a_pro character varying(50), qb2_5ai character varying(50), qb2_5ai_pro character varying(50), qb2_6 character varying(50), qb2_6_pro character varying(50), qb2_5b character varying(50), qb2_5b_pro character varying(50), qb2_7 character varying(50), qb2_7_t character varying(50), qb2_7_pro_a character varying(50), qb2_7_pro_b character varying(50), qb2_3c character varying(50), qb2_3d character varying(50), qb2_041 character varying(50), qb2_042 character varying(50), qb2_043 character varying(50), qb2_044 character varying(50), qb2_045 character varying(50), qb2_046 character varying(50), qb2_047 character varying(50), qb2_048 character varying(50), qb2_049 character varying(50), qb2_410 character varying(50), qb2_411 character varying(50), qb2_412 character varying(50), qb2_413 character varying(50), qb2_414 character varying(50), qb2_415 character varying(50), qb2_416 character varying(50), qb2_417 character varying(50), qb2_418 character varying(50), qb2_419 character varying(50), qb2_420 character varying(50), qb2_421 character varying(50), qb2_422 character varying(50), qb2_423 character varying(50), qb2_424 character varying(50), qb2_425 character varying(50), qb2_426 character varying(50), qb2_427 character varying(50), qb2_428 character varying(50), qb2_429 character varying(50), qb2_430 character varying(50), qb2_431 character varying(50), qb2_432 character varying(50), qb2_433 character varying(50), qb2_434 character varying(50), qb3_1total character varying(50), qb3_1ai character varying(50), qb3_1aiia character varying(50), qb3_2a character varying(50), qb3_2b character varying(50), qb3_2c character varying(50), qb3_3total character varying(50), qb3_3a character varying(50), qb3_3b character varying(50), qb3_3ab character varying(50), qb3_5a character varying(50), qb3_5a_pro character varying(50), qb3_5ai character varying(50), qb3_5ai_pro character varying(50), qb3_6 character varying(50), qb3_6_pro character varying(50), qb3_5b character varying(50), qb3_5b_pro character varying(50), qb3_7 character varying(50), qb3_7_t character varying(50), qb3_7_pro_a character varying(50), qb3_7_pro_b character varying(50), qb3_3c character varying(50), qb3_3d character varying(50), qb3_041 character varying(50), qb3_042 character varying(50), qb3_043 character varying(50), qb3_044 character varying(50), qb3_045 character varying(50), qb3_046 character varying(50), qb3_047 character varying(50), qb3_048 character varying(50), qb3_049 character varying(50), qb3_410 character varying(50), qb3_411 character varying(50), qb3_412 character varying(50), qb3_413 character varying(50), qb3_414 character varying(50), qb3_415 character varying(50), qb3_416 character varying(50), qb3_417 character varying(50), qb3_418 character varying(50), qb3_419 character varying(50), qb3_420 character varying(50), qb3_421 character varying(50), qb3_422 character varying(50), qb3_423 character varying(50), qb3_424 character varying(50), qb3_425 character varying(50), qb3_426 character varying(50), qb4_1total character varying(50), qb4_1other character varying(50), qb4_1ai character varying(50), qb4_1aii character varying(50), qb4_1aiii character varying(50), qb4_1aiv character varying(50), qb4_1av character varying(50), qb4_1avi character varying(50), qb4_2a character varying(50), qb4_2b character varying(50), qb4_2c character varying(50), qb4_3total character varying(50), qb4_3a character varying(50), qb4_3b character varying(50), qb4_3ab character varying(50), qb4_5a character varying(50), qb4_5a_pro character varying(50), qb4_5ai character varying(50), qb4_5ai_pro character varying(50), qb4_6 character varying(50), qb4_6_pro character varying(50), qb4_5b character varying(50), qb4_5b_pro character varying(50), qb4_5c character varying(50), qb4_5c_pro character varying(50), qb4_7b character varying(50), qb4_7_pro_b1 character varying(50), qb4_7 character varying(50), qb4_7_pro_a1 character varying(50), qb4_7b_t character varying(50), qb4_7_pro_b2 character varying(50), qb4_7_t character varying(50), qb4_7_pro_a2 character varying(50), qb4_3c character varying(50), qb4_3d character varying(50), qb4_041 character varying(50), qb4_042 character varying(50), qb4_043 character varying(50), qb4_044 character varying(50), qb4_045 character varying(50), qb4_046 character varying(50), qb4_047 character varying(50), qb4_048 character varying(50), qb4_049 character varying(50), qb4_410 character varying(50), qb4_411 character varying(50), qb4_412 character varying(50), qb4_413 character varying(50), qb4_414 character varying(50), qb4_415 character varying(50), qb4_416 character varying(50), qb4_417 character varying(50), qb4_418 character varying(50), qb4_419 character varying(50), qb4_420 character varying(50), qb4_421 character varying(50), qb4_422 character varying(50), qb4_423 character varying(50), qb4_424 character varying(50), qb4_425 character varying(50), qb4_426 character varying(50), qb4_427 character varying(50), qb4_428 character varying(50), qb4_429 character varying(50), qb4_430 character varying(50), qb4_431 character varying(50), qb4_432 character varying(50), qb4_433 character varying(50), qb4_434 character varying(50), qb4_435 character varying(50), qb4_436 character varying(50), qb4_437 character varying(50), qb4_438 character varying(50), qb4_439 character varying(50), qb4_8a_01flt_a character varying(50), qb4_8a_02flt_a character varying(50), qb4_8a_03flt_a character varying(50), qb4_8a_04flt_a character varying(50), qb4_8a_05flt_a character varying(50), qb4_8a_01a character varying(50), qb4_8a_02a character varying(50), qb4_8a_03a character varying(50), qb4_8a_04a character varying(50), qb4_8a_05a character varying(50), qb4_8a_01e character varying(50), qb4_8a_02e character varying(50), qb4_8a_03e character varying(50), qb4_8a_04e character varying(50), qb4_8a_05e character varying(50), qb4_8a_01f character varying(50), qb4_8a_02f character varying(50), qb4_8a_03f character varying(50), qb4_8a_04f character varying(50), qb4_8a_05f character varying(50), qb4_8b_01flt_a character varying(50), qb4_8b_02flt_a character varying(50), qb4_8b_03flt_a character varying(50), qb4_8b_04flt_a character varying(50), qb4_8b_05flt_a character varying(50), qb4_8b_01a character varying(50), qb4_8b_02a character varying(50), qb4_8b_03a character varying(50), qb4_8b_04a character varying(50), qb4_8b_05a character varying(50), qb4_8b_01e character varying(50), qb4_8b_02e character varying(50), qb4_8b_03e character varying(50), qb4_8b_04e character varying(50), qb4_8b_05e character varying(50), qb4_8b_01f character varying(50), qb4_8b_02f character varying(50), qb4_8b_03f character varying(50), qb4_8b_04f character varying(50), qb4_8b_05f character varying(50), qb5_1total character varying(50), qb5_1ai character varying(50), qb5_1aii character varying(50), qb5_1aiii character varying(50), qb5_2a character varying(50), qb5_2b character varying(50), qb5_2c character varying(50), qb5_3total character varying(50), qb5_3a character varying(50), qb5_3b character varying(50), qb5_3ab character varying(50), qb5_5a character varying(50), qb5_5a_pro character varying(50), qb5_5ai character varying(50), qb5_5ai_pro character varying(50), qb5_6 character varying(50), qb5_6_pro character varying(50), qb5_5b character varying(50), qb5_5b_pro character varying(50), qb5_7 character varying(50), qb5_7_t character varying(50), qb5_7_pro_a character varying(50), qb5_7_pro_b character varying(50), qb5_3c character varying(50), qb5_3d character varying(50), qb5_041 character varying(50), qb5_042 character varying(50), qb5_043 character varying(50), qb5_044 character varying(50), qb5_045 character varying(50), qb5_046 character varying(50), qb5_047 character varying(50), qb5_048 character varying(50), qb5_049 character varying(50), qb5_410 character varying(50), qb5_411 character varying(50), qb5_412 character varying(50), qb5_413 character varying(50), qb5_414 character varying(50), qb5_415 character varying(50), qb5_416 character varying(50), qb5_417 character varying(50), qb5_418 character varying(50), qb5_419 character varying(50), qb5_420 character varying(50), qb5_421 character varying(50), qb5_422 character varying(50), qb5_423 character varying(50), qb5_424 character varying(50), qb5_425 character varying(50), qb5_426 character varying(50), qb5_427 character varying(50), qb5_428 character varying(50), qb5_429 character varying(50), qb5_430 character varying(50), qb5_431 character varying(50), qb5_432 character varying(50), qb5_433 character varying(50), qb5_434 character varying(50), qb5_435 character varying(50), qb5_436 character varying(50), qb5_437 character varying(50), qb5_438 character varying(50), qb5_439 character varying(50), qb5_440 character varying(50), qb6_1total character varying(50), qb6_1ai character varying(50), qb6_1aiii character varying(50), qb6_1aii character varying(50), qb6_2a character varying(50), qb6_2b character varying(50), qb6_2c character varying(50), qb6_3total character varying(50), qb6_3a character varying(50), qb6_3b character varying(50), qb6_3ab character varying(50), qb6_5a character varying(50), qb6_5a_pro character varying(50), qb6_5ai character varying(50), qb6_5ai_pro character varying(50), qb6_6 character varying(50), qb6_6_pro character varying(50), qb6_5b character varying(50), qb6_5b_pro character varying(50), qb6_7 character varying(50), qb6_7_t character varying(50), qb6_7_pro_a character varying(50), qb6_7_pro_b character varying(50), qb6_3c character varying(50), qb6_3d character varying(50), qb6_041 character varying(50), qb6_042 character varying(50), qb6_043 character varying(50), qb6_044 character varying(50), qb6_045 character varying(50), qb6_046 character varying(50), qb6_047 character varying(50), qb6_048 character varying(50), qb6_049 character varying(50), qb6_410 character varying(50), qb6_411 character varying(50), qb6_412 character varying(50), qb6_413 character varying(50), qb6_414 character varying(50), qb6_415 character varying(50), qb6_416 character varying(50), qb6_417 character varying(50), qb6_418 character varying(50), qb6_419 character varying(50), qb6_420 character varying(50), qb6_421 character varying(50), qb6_422 character varying(50), qb6_423 character varying(50), qb6_424 character varying(50), qb6_425 character varying(50), qb6_426 character varying(50), qb6_427 character varying(50), qb6_428 character varying(50), qb6_429 character varying(50), qb6_430 character varying(50), qb6_8a_01flt_a character varying(50), qb6_8a_02flt_a character varying(50), qb6_8a_03flt_a character varying(50), qb6_8a_04flt_a character varying(50), qb6_8a_05flt_a character varying(50), qb6_8a_01a character varying(50), qb6_8a_02a character varying(50), qb6_8a_03a character varying(50), qb6_8a_04a character varying(50), qb6_8a_05a character varying(50), qb6_8a_01e character varying(50), qb6_8a_02e character varying(50), qb6_8a_03e character varying(50), qb6_8a_04e character varying(50), qb6_8a_05e character varying(50), qb6_8a_01f character varying(50), qb6_8a_02f character varying(50), qb6_8a_03f character varying(50), qb6_8a_04f character varying(50), qb6_8a_05f character varying(50), qb6_8b_01flt_a character varying(50), qb6_8b_02flt_a character varying(50), qb6_8b_03flt_a character varying(50), qb6_8b_04flt_a character varying(50), qb6_8b_05flt_a character varying(50), qb6_8b_01a character varying(50), qb6_8b_02a character varying(50), qb6_8b_03a character varying(50), qb6_8b_04a character varying(50), qb6_8b_05a character varying(50), qb6_8b_01e character varying(50), qb6_8b_02e character varying(50), qb6_8b_03e character varying(50), qb6_8b_04e character varying(50), qb6_8b_05e character varying(50), qb6_8b_01f character varying(50), qb6_8b_02f character varying(50), qb6_8b_03f character varying(50), qb6_8b_04f character varying(50), qb6_8b_05f character varying(50), qb7_041 character varying(50), qb7_042 character varying(50), qb7_043 character varying(50), qb7_044 character varying(50), qb7_045 character varying(50), qb7_046 character varying(50), qb7_047 character varying(50), qb7_048 character varying(50), qb7_049 character varying(50), qb7_410 character varying(50), qb7_411 character varying(50), qb7_412 character varying(50), qb7_413 character varying(50), qb7_414 character varying(50), qb7_415 character varying(50), qb7_416 character varying(50), qb7_417 character varying(50), qb7_418 character varying(50), qb7_419 character varying(50), qb7_420 character varying(50), qb7_421 character varying(50), qb7_422 character varying(50), qb7_423 character varying(50), qb7_424 character varying(50), qb7_425 character varying(50), qb7_426 character varying(50), qb7_427 character varying(50), qb7_428 character varying(50), qb7_429 character varying(50), qb7_430 character varying(50), qb7_431 character varying(50), qb7_432 character varying(50), qb7_433 character varying(50), qbx_1total character varying(50), qbx_ai character varying(50), qbx_aii character varying(50), qbx_aiii character varying(50), qbx_av character varying(50), qbx_3total character varying(50), qbx_3a_tot character varying(50), qbx_3b_tot character varying(50), qbx_3ab_tot character varying(50), qbx_5a_tot character varying(50), qbx_5ai_tot character varying(50), qbx_5a_pro character varying(50), qbx_5ai_pro character varying(50), qbx_6_num character varying(50), qbx_6_pro character varying(50), qbx_5b_tot character varying(50), qbx_5b_pro character varying(50), qbx_7b_a character varying(50), qbx_7b_pro character varying(50), qbx_7a_a character varying(50), qbx_7_pro_a character varying(50), qbx_7a_b character varying(50), qbx_7_pro_b character varying(50), qbx_7a_ab character varying(50), qbx_7_pro_ab character varying(50), qbx_3c character varying(50), qbx_3d character varying(50), qbx_041 character varying(50), qbx_042 character varying(50), qbx_043 character varying(50), qbx_044 character varying(50), qbx_045 character varying(50), qbx_046 character varying(50), qbx_047 character varying(50), qbx_048 character varying(50), qbx_049 character varying(50), qbx_410 character varying(50), qbx_411 character varying(50), qbx_412 character varying(50), qbx_413 character varying(50), qbx_414 character varying(50), qbx_415 character varying(50), qbx_416 character varying(50), qbx_417 character varying(50), qbx_418 character varying(50), qbx_419 character varying(50), qbx_420 character varying(50), qbx_421 character varying(50), qbx_422 character varying(50), qbx_423 character varying(50), qbx_424 character varying(50), qbx_425 character varying(50), qbx_426 character varying(50), qbx_427 character varying(50), qbx_428 character varying(50), qbx_429 character varying(50), qbx_430 character varying(50), qbx_431 character varying(50), qbx_432 character varying(50), qbx_433 character varying(50), qbx_434 character varying(50), qbx_435 character varying(50), qbx_436 character varying(50), qbx_437 character varying(50), qbx_438 character varying(50), qbx_439 character varying(50), qbx_440 character varying(50), qbx_441 character varying(50), qbx_442 character varying(50), qbx_443 character varying(50), qbx_444 character varying(50), qbx_445 character varying(50), qbx_446 character varying(50), qbx_447 character varying(50), qbx_448 character varying(50), qbx_449 character varying(50), qbx_450 character varying(50), qbx_451 character varying(50), qbx_452 character varying(50), qbx_453 character varying(50), qbx_454 character varying(50), qbx_455 character varying(50), qbx_456 character varying(50), qbx_457 character varying(50), qbx_458 character varying(50), qbx_459 character varying(50), qbx_460 character varying(50), qbx_461 character varying(50), qbx_462 character varying(50), qbx_463 character varying(50), qbx_464 character varying(50), qbx_465 character varying(50), qbx_466 character varying(50), qbx_467 character varying(50), qbx_468 character varying(50), qbx_469 character varying(50), qbx_470 character varying(50), q31 character varying(50), q32 character varying(50), q33 character varying(50), q34 character varying(50), q35 character varying(50), q36 character varying(50), q37 character varying(50), q38 character varying(50), q39 character varying(50), q310 character varying(50), q311 character varying(50), q312 character varying(50), q313 character varying(50), q314 character varying(50), q315 character varying(50), q316 character varying(50), q317 character varying(50), q318 character varying(50), q319 character varying(50), q320 character varying(50), q321 character varying(50), q322 character varying(50), q323 character varying(50), q324 character varying(50), q325 character varying(50), q326 character varying(50), q327 character varying(50), q328 character varying(50), q329 character varying(50), q330 character varying(50), q331 character varying(50), q332 character varying(50), q333 character varying(50), q334 character varying(50), q335 character varying(50), q3x1 character varying(50), q3x2 character varying(50), q3x3 character varying(50), q3x4 character varying(50), q3x5 character varying(50), q3x6 character varying(50), q3x7 character varying(50), q3x8 character varying(50), q3x9 character varying(50), q3x10 character varying(50), q3x11 character varying(50), q3x12 character varying(50), q4a character varying(50), q4b character varying(50), q4c character varying(50), q4d character varying(50), q4e character varying(50), q4f character varying(50), q4g character varying(50), q4h character varying(50), q51 character varying(50), q52 character varying(50), q53 character varying(50), q54 character varying(50), q55 character varying(50), q56 character varying(50), q57 character varying(50), q58 character varying(50), q59 character varying(50), q510 character varying(50), q511 character varying(50), q512 character varying(50), q513 character varying(50), q514 character varying(50), q515 character varying(50), q516 character varying(50), q517 character varying(50), q518 character varying(50), q519 character varying(50), q61 character varying(50), q62 character varying(50), q63 character varying(50), q64 character varying(50), q65 character varying(50), q66 character varying(50), q67 character varying(50), q68 character varying(50), q69 character varying(50), q610 character varying(50), q611 character varying(50), q612 character varying(50), q613 character varying(50), q614 character varying(50), q615 character varying(50), q616 character varying(50), q617 character varying(50), q618 character varying(50), q619 character varying(50), q620 character varying(50), q621 character varying(50), q622 character varying(50), q623 character varying(50), q624 character varying(50), q625 character varying(50), q626 character varying(50), q71 character varying(50), q72 character varying(50), q73 character varying(50), q74 character varying(50), q75 character varying(50), q76 character varying(50), q77 character varying(50), q78 character varying(50), q79 character varying(50), q710 character varying(50), q711 character varying(50), q712 character varying(50), q713 character varying(50), q714 character varying(50), q715 character varying(50), q716 character varying(50), q717 character varying(50), q718 character varying(50), q719 character varying(50), q720 character varying(50), q81 character varying(50), q82 character varying(50), q83 character varying(50), q84 character varying(50), q85 character varying(50), q86 character varying(50), q87 character varying(50), q88 character varying(50), q89 character varying(50), q810 character varying(50), q811 character varying(50), q812 character varying(50), q813 character varying(50), q814 character varying(50), q815 character varying(50), q816 character varying(50), q817 character varying(50), q818 character varying(50), q819 character varying(50), q820 character varying(50), q821 character varying(50), q822 character varying(50), q823 character varying(50), q824 character varying(50), q91 character varying(50), q92 character varying(50), q93 character varying(50), q94 character varying(50), q95 character varying(50), q96 character varying(50), q97 character varying(50), q98 character varying(50), q99 character varying(50), q910 character varying(50), q911 character varying(50), q912 character varying(50), q913 character varying(50), q914 character varying(50), q10a1 character varying(50), q10a2 character varying(50), q10a3 character varying(50), q10a4 character varying(50), q10a5 character varying(50), q10a6 character varying(50), q10a7 character varying(50), q10a8 character varying(50), q10a9 character varying(50), q10a10 character varying(50), q10a11 character varying(50), q10a12 character varying(50), q10a13 character varying(50), q10a14 character varying(50), q10a15 character varying(50), q10a16 character varying(50), q10a17 character varying(50), q10a18 character varying(50), q10a19 character varying(50), q10a20 character varying(50), q10a21 character varying(50), q10a22 character varying(50), q10a23 character varying(50), q10a24 character varying(50), q10a25 character varying(50), q10a26 character varying(50), q10a27 character varying(50), q10a28 character varying(50), q10b1 character varying(50), q10b2 character varying(50), q10b3 character varying(50), q10b4 character varying(50), q10b5 character varying(50), q10b6 character varying(50), q10b7 character varying(50), q10b8 character varying(50), q10b9 character varying(50), q10b10 character varying(50), q10b11 character varying(50), q10b12 character varying(50), q10b13 character varying(50), q10b14 character varying(50), q10b15 character varying(50), q10b16 character varying(50), q10b17 character varying(50), q10b18 character varying(50), q10b19 character varying(50), q10b20 character varying(50), q10b21 character varying(50), q10b22 character varying(50), q10b23 character varying(50), q10b24 character varying(50), q11a character varying(50), q11b1 character varying(50), q11b2 character varying(50), q11b3 character varying(50), q11b4 character varying(50), q11b5 character varying(50), q11b6 character varying(50), q11b7 character varying(50), q11b8 character varying(50), q11b9 character varying(50), q11b10 character varying(50), q11b11 character varying(50), q11b12 character varying(50), q11b13 character varying(50), q11b14 character varying(50), q11b15 character varying(50), q11b16 character varying(50), q11b17 character varying(50), q11b18 character varying(50), q11b19 character varying(50), q11b20 character varying(50), q11b21 character varying(50), q11b22 character varying(50), q11b23 character varying(50), q11b24 character varying(50), q11b25 character varying(50), q11b26 character varying(50), q11b27 character varying(50), q11b28 character varying(50) ); ALTER TABLE wave6 OWNER TO postgres; -- -- TOC entry 2170 (class 0 OID 678507) -- Dependencies: 193 -- Data for Name: availablewaves; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY availablewaves ("waveName", "timePeriod") FROM stdin; wave1 May 12 -> Jul 12 wave2 Aug 12 -> Oct 12 wave3 Nov 12 -> Jan 13 wave4 Mar 13 -> May 13 wave5 Mar 15 -> May 15 wave6 Mar 16 -> May 16 \. -- -- TOC entry 2169 (class 0 OID 677194) -- Dependencies: 192 -- Data for Name: fields; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY fields (code, text) FROM stdin; qa_02 Access to the Internet at work on a computer\\laptop : Q.A Internet access qa_03 Access to the Internet at home on a games console : Q.A Internet access qa_04 Internet at home through your TV screen via a computer : Q.A Internet access qa_05 Internet at home directly through your TV set i.e. Smart\\Connected TV) : Q.A Internet access qa_06 Access to the Internet via a mobile phone : Q.A Internet access qa_07 Access to the internet on a tablet computer e.g. iPad : Q.A Internet access qa_08 Access to the Internet at school\\college \\university on a computer : Q.A Internet access qa_09 Internet access from a library on a computer : Q.A Internet access qa_10 Internet access in a café\\bar on a computer : Q.A Internet access qa_11 Internet access at a friend's or relative's house on a computer : Q.A Internet access qa_12 Other Internet access : Q.A Internet access qa_13 An e-mail address at home : Q.A Internet access qa_14 An e-mail address at work : Q.A Internet access qa_15 Other e-mail address : Q.A Internet access qa_16 None : Q.A Internet access qa_17 Don't know : Q.A Internet access qb_01 Digital Satellite TV through Sky for a monthly subscription (i.e. satellite dish) : Q.B TV access qb_02 Free-Sat TV through any satellite dish WITHOUT a monthly subscription : Q.B TV access qb_03 Cable through Virgin Media (previously ntl\\Telewest) : Q.B TV access qb_04 Freeview TV through TV aerial and set-top box without a monthly subscription : Q.B TV access qb_05 Top-Up TV through TV aerial and set-top box for a monthly subscription : Q.B TV access qb_06 TV which has Freeview channels built in (IDTV using TV aerial, without a separate set-top box) : Q.B TV access qb_07 TV from Tiscali\\Homechoice : Q.B TV access qb_08 TV from BT Vision : Q.B TV access qb_09 TV from Talk Talk : Q.B TV access qb_10 TV through a normal aerial but receiving the main 4 or 5 channels only : Q.B TV access qb_11 Other : Q.B TV access qb_12 NO TV : Q.B TV access qc_01 A Smartphone e.g. iPhone, Blackberry, HTC, etc : Q.C Devices personally use qc_02 A mobile phone (not a Smartphone) with internet access : Q.C Devices personally use qc_03 A mobile phone without internet access : Q.C Devices personally use qc_04 A computer - either laptop, desktop, or netbook : Q.C Devices personally use qc_05 A tablet PC e.g. iPad, Samsung Galaxy : Q.C Devices personally use qc_06 An e-book reader e.g. Kindle, Kobo : Q.C Devices personally use qc_07 A games console e.g. Xbox 360, PS3, Nintendo Wii : Q.C Devices personally use qc_08 A mobile gaming device e.g. Sony PSP\\Vita, Nintendo DS : Q.C Devices personally use qc_09 Ipod (Touch)/MP3 player : Q.C Devices personally use qc_10 Mobile phone - no detail of internet access : Q.C Devices personally use qc_11 Other mobile device : Q.C Devices personally use qc_12 None of these : Q.C Devices personally use qc_13 Don't know : Q.C Devices personally use qd Q.D Frequency of internet use qd3_1 I use VPN services to access content like music, films, TV series, books etc for free : Q.D3 Please tell me which of the following statements apply to you with regards to VPN services. By VPN services we mean Virtual Private Network qd3_2 I use VPN services to access other countries content like music, films, TV series, books etc that is : Q.D3 Please tell me which of the following statements apply to you with regards to VPN services. By VPN services we mean Virtual Private Network qd3_3 I use VPN services to secure my communications and internet browsing details : Q.D3 Please tell me which of the following statements apply to you with regards to VPN services. By VPN services we mean Virtual Private Network qd3_4 I use VPN services to access content like music, films, TV series, books etc for a reasonable price : Q.D3 Please tell me which of the following statements apply to you with regards to VPN services. By VPN services we mean Virtual Private Network qd3_5 I don't know what are VPN services : Q.D3 Please tell me which of the following statements apply to you with regards to VPN services. By VPN services we mean Virtual Private Network qd3_6 I have heard about the VPN services but I never use them : Q.D3 Please tell me which of the following statements apply to you with regards to VPN services. By VPN services we mean Virtual Private Network q1a1 Yes - music tracks or albums (excluding online radio stations) : Q.1A Files ever downloaded q1a2 Yes - music videos : Q.1A Files ever downloaded q1a3 Yes - video games (excluding patches and upgrades) : Q.1A Files ever downloaded q1a4 Yes - computer software (excluding mobile phone apps, and patches\\upgrades to software already owned : Q.1A Files ever downloaded q1a5 Yes - films (full length) : Q.1A Files ever downloaded q1a6 Yes - TV programmes : Q.1A Files ever downloaded q1a7 Yes - Short video clips : Q.1A Files ever downloaded q1a8 Yes - e-books : Q.1A Files ever downloaded q1a9 Yes - magazines : Q.1A Files ever downloaded q1a10 Yes - other type of file : Q.1A Files ever downloaded q1a11 No : Q.1A Files ever downloaded q1a12 Don't know : Q.1A Files ever downloaded q1b1 Yes - music tracks or albums (excluding online radio stations) : Q.1B Files ever streamed or accessed q1b2 Yes - music videos : Q.1B Files ever streamed or accessed q1b3 Yes - video games (excluding patches and upgrades) : Q.1B Files ever streamed or accessed q1b4 Yes - computer software (excluding mobile phone apps, and patches\\upgrades to software already owned : Q.1B Files ever streamed or accessed q1b5 Yes - films (full length) : Q.1B Files ever streamed or accessed q1b6 Yes - TV programmes : Q.1B Files ever streamed or accessed q1b7 Yes - Short video clips : Q.1B Files ever streamed or accessed q1b8 Yes - e-books : Q.1B Files ever streamed or accessed q1b9 Yes - magazines : Q.1B Files ever streamed or accessed q1b10 Yes - other type of file : Q.1B Files ever streamed or accessed q1b11 No : Q.1B Files ever streamed or accessed q1b12 Don't know : Q.1B Files ever streamed or accessed q1c1 Yes - music tracks or albums (excluding online radio stations) : Q.1C Files ever shared q1c2 Yes - music videos : Q.1C Files ever shared q1c3 Yes - video games (excluding patches and upgrades) : Q.1C Files ever shared q1c4 Yes - computer software (excluding mobile phone apps, and patches\\upgrades to software already owned : Q.1C Files ever shared q1c5 Yes - films (full length) : Q.1C Files ever shared q1c6 Yes - TV programmes : Q.1C Files ever shared q1c7 Yes - Short video clips : Q.1C Files ever shared q1c8 Yes - e-books : Q.1C Files ever shared q1c9 Yes - magazines : Q.1C Files ever shared q1c10 Yes - other type of file : Q.1C Files ever shared q1c11 No : Q.1C Files ever shared q1c12 Don't know : Q.1C Files ever shared q2a1 Yes - music tracks or albums (excluding online radio stations) : Q.2A Files downloaded in the last 3 months q2a2 Yes - music videos : Q.2A Files downloaded in the last 3 months q2a3 Yes - video games (excluding patches and upgrades) : Q.2A Files downloaded in the last 3 months q2a4 Yes - computer software (excluding mobile phone apps, and patches\\upgrades to software already owned : Q.2A Files downloaded in the last 3 months q2a5 Yes - films (full length) : Q.2A Files downloaded in the last 3 months q2a6 Yes - TV programmes : Q.2A Files downloaded in the last 3 months q2a7 Yes - Short video clips : Q.2A Files downloaded in the last 3 months q2a8 Yes - e-books : Q.2A Files downloaded in the last 3 months q2a9 Yes - magazines : Q.2A Files downloaded in the last 3 months q2a10 Yes - other type of file : Q.2A Files downloaded in the last 3 months q2a11 None : Q.2A Files downloaded in the last 3 months q2a12 Don't know : Q.2A Files downloaded in the last 3 months q2b1 Yes - music tracks or albums (excluding online radio stations) : Q.2B Files streamed or accessed in the last 3 months q2b2 Yes - music videos : Q.2B Files streamed or accessed in the last 3 months q2b3 Yes - video games (excluding patches and upgrades) : Q.2B Files streamed or accessed in the last 3 months q2b4 Yes - computer software (excluding mobile phone apps, and patches\\upgrades to software already owned : Q.2B Files streamed or accessed in the last 3 months q2b5 Yes - films (full length) : Q.2B Files streamed or accessed in the last 3 months q2b6 Yes - TV programmes : Q.2B Files streamed or accessed in the last 3 months q2b7 Yes - Short video clips : Q.2B Files streamed or accessed in the last 3 months q2b8 Yes - e-books : Q.2B Files streamed or accessed in the last 3 months q2b9 Yes - magazines : Q.2B Files streamed or accessed in the last 3 months q2b10 Yes - other type of file : Q.2B Files streamed or accessed in the last 3 months q2b11 None : Q.2B Files streamed or accessed in the last 3 months q2b12 Don't know : Q.2B Files streamed or accessed in the last 3 months q2c1 Yes - music tracks or albums (excluding online radio stations) : Q.2C Files shared in the last 3 months q2c2 Yes - music videos : Q.2C Files shared in the last 3 months q2c3 Yes - video games (excluding patches and upgrades) : Q.2C Files shared in the last 3 months q2c4 Yes - computer software (excluding mobile phone apps, and patches\\upgrades to software already owned : Q.2C Files shared in the last 3 months q2c5 Yes - films (full length) : Q.2C Files shared in the last 3 months q2c6 Yes - TV programmes : Q.2C Files shared in the last 3 months q2c7 Yes - Short video clips : Q.2C Files shared in the last 3 months q2c8 Yes - e-books : Q.2C Files shared in the last 3 months q2c9 Yes - magazines : Q.2C Files shared in the last 3 months q2c10 Yes - other type of file : Q.2C Files shared in the last 3 months q2c11 None : Q.2C Files shared in the last 3 months q2c12 Don't know : Q.2C Files shared in the last 3 months q3a1 In home via fixed broadband internet access, through a telephone line e.g. BT, Sky, TalkTalk : Q.3A In home and out of home connections used to download files (last 3 months) q3a2 In home via fixed broadband internet access, through cable \\ Virgin Media : Q.3A In home and out of home connections used to download files (last 3 months) q3a3 In home via Wi-Fi (using a router or hub) : Q.3A In home and out of home connections used to download files (last 3 months) q3a4 In home via a mobile network e.g. using 3G on a smartphone\\tablet\\dongle : Q.3A In home and out of home connections used to download files (last 3 months) q3a5 In home via a mobile network e.g. using 4G on a smartphone\\ tablet \\dongle : Q.3A In home and out of home connections used to download files (last 3 months) q3a6 Out of home via fixed broadband internet access (e.g. in a cafe, library or other public place) : Q.3A In home and out of home connections used to download files (last 3 months) q3a7 Out of home via a Wi-Fi (wireless) network (e.g. in a cafe, library or other public place) : Q.3A In home and out of home connections used to download files (last 3 months) q3a8 Out of home via a mobile network e.g. using 3G in a public place (e.g. cafe of library) : Q.3A In home and out of home connections used to download files (last 3 months) q3a9 Out of home via a mobile network e.g. using 4G in a public place (e.g. in a cafe or library) : Q.3A In home and out of home connections used to download files (last 3 months) q3a10 None : Q.3A In home and out of home connections used to download files (last 3 months) q3b1 In home via fixed broadband internet access, through a telephone line e.g. BT, Sky, TalkTalk : Q.3B In home and out of home connections used to access/stream (last 3 months) q3b2 In home via fixed broadband internet access, through cable \\ Virgin Media : Q.3B In home and out of home connections used to access/stream (last 3 months) q3b3 In home via Wi-Fi (using a router or hub) : Q.3B In home and out of home connections used to access/stream (last 3 months) q3b4 In home via a mobile network e.g. using 3G on a smartphone\\tablet\\dongle : Q.3B In home and out of home connections used to access/stream (last 3 months) q3b5 In home via a mobile network e.g. using 4G on a smartphone\\ tablet \\dongle : Q.3B In home and out of home connections used to access/stream (last 3 months) q3b6 Out of home via fixed broadband internet access (e.g. in a cafe, library or other public place) : Q.3B In home and out of home connections used to access/stream (last 3 months) q3b7 Out of home via a Wi-Fi (wireless) network (e.g. in a cafe, library or other public place) : Q.3B In home and out of home connections used to access/stream (last 3 months) q3b8 Out of home via a mobile network e.g. using 3G in a public place (e.g. cafe of library) : Q.3B In home and out of home connections used to access/stream (last 3 months) q3b9 Out of home via a mobile network e.g. using 4G in a public place (e.g. in a cafe or library) : Q.3B In home and out of home connections used to access/stream (last 3 months) q3b10 None : Q.3B In home and out of home connections used to access/stream (last 3 months) q3c1 In home via fixed broadband internet access, through a telephone line e.g. BT, Sky, TalkTalk : Q.3C In home and out of home connections used to share files (last 3 months) q3c2 In home via fixed broadband internet access, through cable \\ Virgin Media : Q.3C In home and out of home connections used to share files (last 3 months) q3c3 In home via Wi-Fi (using a router or hub) : Q.3C In home and out of home connections used to share files (last 3 months) q3c4 In home via a mobile network e.g. using 3G on a smartphone\\tablet\\dongle : Q.3C In home and out of home connections used to share files (last 3 months) q3c5 In home via a mobile network e.g. using 4G on a smartphone\\ tablet \\dongle : Q.3C In home and out of home connections used to share files (last 3 months) q3c6 Out of home via fixed broadband internet access (e.g. in a cafe, library or other public place) : Q.3C In home and out of home connections used to share files (last 3 months) q3c7 Out of home via a Wi-Fi (wireless) network (e.g. in a cafe, library or other public place) : Q.3C In home and out of home connections used to share files (last 3 months) q3c8 Out of home via a mobile network e.g. using 3G in a public place (e.g. cafe of library) : Q.3C In home and out of home connections used to share files (last 3 months) q3c9 Out of home via a mobile network e.g. using 4G in a public place (e.g. in a cafe or library) : Q.3C In home and out of home connections used to share files (last 3 months) q3c10 None : Q.3C In home and out of home connections used to share files (last 3 months) qb1_1total Q.B1_1TOTAL 3 month Spend - Music total qb1_1aother Q.B1_1OTHER 3 month Spend - Music other qb1_1ai Q.B1_1Ai 3 month Spend - Music concerts or gigs qb1_1aii Q.B1_1Aii 3 month Spend - Music merchandise qb1_1aiii Q.B1_1Aiii 3 month Spend - Music tracks or albums bought on CD or vinyl qb1_1aiva Q.B1_1Aiv 3 month Spend - Music tracks or albums downloaded or streamed/accessed online qb1_1ava Q.B1_1Av 3 month Spend - Music subscriptions qb1_2a Q.B1_2A Frequency of downloading - Music qb1_2b Q.B1_2B Frequency of streaming - Music qb1_2c Q.B1_2C Frequency of sharing - Music qb1_3total Q.B1_3Total Number - Music total in the last 3 months qb1_3a Q.B1_3A Number - Music tracks downloaded in the last 3 months qb1_3b Q.B1_3B Number - Music tracks streamed in the last 3 months qb1_3ab Q.B1_3A/B Number - Music tracks downloaded or streamed in the last 3 months qb1_5a Q.B1_5A Number - Music tracks downloaded/streamed in the last 3 months - Paid for qb1_5a_pro Q.B1_5A Proportion - Music tracks downloaded/streamed in the last 3 months paid for qb1_5ai Q.B1_5Ai Number - Music tracks downloaded/streamed for free in the last 3 months qb1_5ai_pro Q.B1_5Ai Proportion - Music tracks downloaded/streamed for free in the last 3 months qb1_6 Q.B1_6 Number - paid music tracks previously downloaded or streamed for free in the last 3 months qb1_6_pro Q.B1_6 Proportion - paid music tracks previously downloaded or streamed for free qb1_5b Q.B1_5B Number - Music tracks downloaded/streamed in the last 3 months already owned on disc or vinyl qb1_5b_pro Q.B1_5B Proportion - Music tracks downloaded/streamed in the last 3 months already owned on disc or vinyl qb1_7b Q.B1_7B Number - Paid music tracks downloaded or streamed legally in the last 3 months qb1_7_pro_b1 Q.B1_7B Proportion - Paid music tracks downloaded or streamed legally in the last 3 months qb1_7 Q.B1_7 Number - free music tracks downloaded or streamed legally in the last 3 months qb1_7_pro_a1 Q.B1_7 Proportion - free music tracks downloaded or streamed legally in the last 3 months qb1_7b_t Q.B1_7B_T Number - Total music tracks downloaded or streamed music online legally in the last 3 months (Including paid illegal) qb1_7_pro_b2 Q.B1_7B Proportion - Total music tracks downloaded or streamed legally in the last 3 months (Including paid illegal) qb1_7_t Q.B1_7_T Number - Total music tracks downloaded or streamed music online legally in the last 3 months (presuming paid as legal) qb1_7_pro_a2 Q.B1_7 Proportion - Total music tracks downloaded or streamed legally (presuming paid as legal) qb1_3c01 Q.B1_3C1 Number - Music tracks owned in digital format (amongst sharers) qb1_3c02 Q.B1_3C2 Number - Music tracks shared in the last 3 months qb1_3c12 Q.B1_3C1/2 Number - Owned v Shared qb1_3c_pro Q.B1_3C1/2 Proportion - music library shared in the last 3 months qb1_3d Q.B1_3D Number - Music tracks bought on CD or vinyl in the last 3 months qb1_041 7 Digital : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_042 Amazon \\ Amazon mp3 \\ Kindle : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_043 Amazon Music : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_044 Apple Music : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_045 BitTorrent software : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_046 eDonkey \\ eMule : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_047 Email : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_048 eMusic : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_049 Facebook : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_410 FilesTube : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_411 Free music download app (on a mobile phone or tablet PC) : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_412 FTP software : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_413 Gnutella : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_414 Google (Search Engine) : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_415 Google Play \\ Android Marketplace : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_416 Grooveshark : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_417 HMV Digital : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_418 Isohunt : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_419 iTunes \\ App Store \\ ibookstore \\ Apple Store : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_420 KickAssTorrents : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_421 Last FM : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_422 Limewire : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_423 MediaFire : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_424 MP3Skull : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_425 Napster : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_426 Pirate Bay : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_427 Play.com : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_428 Rapidshare : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_429 Software or service used to convert an online stream to a file : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_430 Sony Entertainment Network - Music Unlimited \\ Video Unlimited \\ Playstation Network : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_431 Spotify : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_432 Soundcloud : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_433 Tesco : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_434 Tidal : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_435 Torrentz : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_436 uTorrent : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_437 We7 : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_438 Windows Messenger : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_439 www.clipconverter.cc : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_440 Yousendit : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_441 YouTube : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_442 youtube-mp3.org : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_443 Zune : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_444 Other website or service : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_445 None/haven't used : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_446 Don’t know : Q.B1_4 Sites or services used in the last 3 months to stream, or share music tracks or albums qb1_8a_01flt_a Q.B1_8A_01 Price Sensitivity - Music Download service - 39p qb1_8a_02flt_a Q.B1_8A_02 Price Sensitivity - Music Download service - 59p qb1_8a_03flt_a Q.B1_8A_03 Price Sensitivity - Music Download service - 79p qb1_8a_04flt_a Q.B1_8A_04 Price Sensitivity - Music Download service - 99p qb1_8a_05flt_a Q.B1_8A_05 Price Sensitivity - Music Download service - £1.19 qb1_8a_01a Q.B1_8A_01 Price Sensitivity - Music Download service - 39p qb1_8a_02a Q.B1_8A_02 Price Sensitivity - Music Download service - 59p qb1_8a_03a Q.B1_8A_03 Price Sensitivity - Music Download service - 79p qb1_8a_04a Q.B1_8A_04 Price Sensitivity - Music Download service - 99p qb1_8a_05a Q.B1_8A_05 Price Sensitivity - Music Download service - £1.19 qb1_8a_01e Q.B1_8A_01 Price Sensitivity - Music Download service - 39p qb1_8a_02e Q.B1_8A_02 Price Sensitivity - Music Download service - 59p qb1_8a_03e Q.B1_8A_03 Price Sensitivity - Music Download service - 79p qb1_8a_04e Q.B1_8A_04 Price Sensitivity - Music Download service - 99p qb1_8a_05e Q.B1_8A_05 Price Sensitivity - Music Download service - £1.19 qb1_8a_01f Q.B1_8A_01 Price Sensitivity - Music Download service - 39p qb1_8a_02f Q.B1_8A_02 Price Sensitivity - Music Download service - 59p qb1_8a_03f Q.B1_8A_03 Price Sensitivity - Music Download service - 79p qb1_8a_04f Q.B1_8A_04 Price Sensitivity - Music Download service - 99p qb1_8a_05f Q.B1_8A_05 Price Sensitivity - Music Download service - £1.19 qb1_8b_01flt_a Q.B1_8B_01 Price Sensitivity - Music Subscription service - £3 qb1_8b_02flt_a Q.B1_8B_02 Price Sensitivity - Music Subscription service - £5 qb1_8b_03flt_a Q.B1_8B_03 Price Sensitivity - Music Subscription service - £7.50 qb1_8b_04flt_a Q.B1_8B_04 Price Sensitivity - Music Subscription service - £10 qb1_8b_05flt_a Q.B1_8B_05 Price Sensitivity - Music Subscription service - £12.50 qb1_8b_01a Q.B1_8B_01 Price Sensitivity - Music Subscription service - £3 qb1_8b_02a Q.B1_8B_02 Price Sensitivity - Music Subscription service - £5 qb1_8b_03a Q.B1_8B_03 Price Sensitivity - Music Subscription service - £7.50 qb1_8b_04a Q.B1_8B_04 Price Sensitivity - Music Subscription service - £10 qb1_8b_05a Q.B1_8B_05 Price Sensitivity - Music Subscription service - £12.50 qb1_8b_01e Q.B1_8B_01 Price Sensitivity - Music Subscription service - £3 qb1_8b_02e Q.B1_8B_02 Price Sensitivity - Music Subscription service - £5 qb1_8b_03e Q.B1_8B_03 Price Sensitivity - Music Subscription service - £7.50 qb1_8b_04e Q.B1_8B_04 Price Sensitivity - Music Subscription service - £10 qb1_8b_05e Q.B1_8B_05 Price Sensitivity - Music Subscription service - £12.50 qb1_8b_01f Q.B1_8B_01 Price Sensitivity - Music Subscription service - £3 qb1_8b_02f Q.B1_8B_02 Price Sensitivity - Music Subscription service - £5 qb1_8b_03f Q.B1_8B_03 Price Sensitivity - Music Subscription service - £7.50 qb1_8b_04f Q.B1_8B_04 Price Sensitivity - Music Subscription service - £10 qb1_8b_05f Q.B1_8B_05 Price Sensitivity - Music Subscription service - £12.50 qb2_1total Q.B2_1TOTAL 3 month Spend - Video Games total qb2_1ai Q.B2_1Ai 3 month Spend - Video Games bought or rented on Disc or Cartridge qb2_1aiii Q.B2_1Aiii 3 month Spend - Video Games merchandise e.g. Tshirts, Mugs, Posters qb2_1aiia Q.B2_1Aii 3 month Spend - Video Games downloaded or accessed qb2_2a Q.B2_2A Frequency of downloading - Video Games qb2_2b Q.B2_2B Frequency of accessing - Video Games qb2_2c Q.B2_2C Frequency of sharing - Video Games qb2_3total Q.B2_3Total Number - Video Games total in the last 3 months qb2_3a Q.B2_3A Number - Video Games downloaded in the last 3 months qb2_3b Q.B2_3B Number - Video Games accessed in the last 3 months qb2_3ab Q.B2_3A/B Number - Video Games downloaded or accessed in the last 3 months qb2_5a Q.B2_5A Number - Video Games downloaded/accessed in the last 3 months - Paid for qb2_5a_pro Q.B2_5A Proportion - Video Games downloaded/accessed in the last 3 months paid for qb2_5ai Q.B2_5Ai Number - Video Games downloaded/accessed for free in the last 3 months qb2_5ai_pro Q.B2_5Ai Proportion - Video Games downloaded/accessed for free in the last 3 months qb2_6 Q.B2_6 Number - paid Video Games previously downloaded or accessed for free in the last 3 months qb2_6_pro Q.B2_6 Proportion - paid Video Games previously downloaded or accessed for free qb2_5b Q.B2_5B Number - Video Games downloaded/accessed in the last 3 months already owned on disc or cartridge qb2_5b_pro Q.B2_5B Proportion - Video games downloaded/accessed in the last 3 months already owned on disc or cartridge qb2_7 Q.B2_7 Number - free Video Games downloaded or accessed legally in the last 3 months qb2_7_t Q.B2_7_T Number - Total Video Games downloaded or accessed video games legally in the last 3 months qb2_7_pro_a Q.B2_7 Proportion - free Video Games downloaded or accessed legally in the last 3 months qb2_7_pro_b Q.B2_7 Proportion - Total Video Games downloaded or accessed legally in the last 3 months qb2_3c Q.B2_3C Number - Video Games shared in the last 3 months qb2_3d Q.B2_3D Number - Video Games bought or rented on disc or cartridge in the last 3 months qb2_041 Amazon \\ Amazon mp3 \\ Kindle : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_042 Big Fish : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_043 BitTorrent software : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_044 eDonkey \\ eMule : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_045 Email : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_046 Facebook : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_047 FilesTube : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_048 FTP software : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_049 Gnutella : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_410 Google (Search Engine) : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_411 Google Play \\ Android Marketplace : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_412 Isohunt : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_413 iTunes \\ App Store \\ ibookstore \\ Apple Store : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_414 KickAssTorrents : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_415 Limewire : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_416 Lovefilm : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_417 MediaFire : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_418 Miniclip : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_419 Pirate Bay : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_420 Play.com : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_421 Rapidshare : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_422 Sony Entertainment Network - Music Unlimited \\ Video Unlimited \\ Playstation Network : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_423 Steam : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_424 Torrentz : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_425 uTorrent : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_426 Wii Shop channel : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_427 Windows Messenger : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_428 www.clipconverter.cc : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_429 Xbox Live : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_430 Yousendit : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_431 youtube-mp3.org : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_432 Other website or service : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_433 None/haven't used : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb2_434 Don’t know : Q.B2_4 Sites or services used in the last 3 months to access, or share Video Games qb3_1total Q.B3_1TOTAL 3 month Spend - Computer Software total qb3_1ai Q.B3_1Ai 3 month Spend - Computer Software on disc or Cartridge qb3_1aiia Q.B3_1Aii 3 month Spend - Computer Software downloaded or accessed qb3_2a Q.B3_2A Frequency of downloading - Computer Software qb3_2b Q.B3_2B Frequency of accessing - Computer Software qb3_2c Q.B3_2C Frequency of sharing - Computer Software qb3_3total Q.B3_3Total Number - Computer Software total in the last 3 months qb3_3a Q.B3_3A Number - Computer Software downloaded in the last 3 months qb3_3b Q.B3_3B Number - Computer Software accessed in the last 3 months qb3_3ab Q.B3_3A/B Number - Computer Software downloaded or accessed in the last 3 months qb3_5a Q.B3_5A Number - Computer Software downloaded/accessed in the last 3 months - Paid for qb3_5a_pro Q.B3_5A Proportion - Computer software downloaded/accessed in the last 3 months paid for qb3_5ai Q.B3_5Ai Number - Computer Software downloaded/accessed for free in the last 3 months qb3_5ai_pro Q.B3_5Ai Proportion - Computer software downloaded/accessed for free in the last 3 months qb3_6 Q.B3_6 Number - paid Computer Software previously downloaded or accessed for free in the last 3 months qb3_6_pro Q.B3_6 Proportion - paid Computer software previously downloaded or accessed for free qb3_5b Q.B3_5B Number - Computer Software downloaded/accessed in the last 3 months already owned on disc qb3_5b_pro Q.B3_5B Proportion - Computer software downloaded/accessed in the last 3 months already owned on disc qb3_7 Q.B3_7 Number - free Computer Software downloaded or accessed legally in the last 3 months qb3_7_t Q.B3_7_T Number - Total Computer Software downloaded or accessed computer software legally in the last 3 months qb3_7_pro_a Q.B3_7 Proportion - free Computer Software downloaded or accessed legally in the last 3 months qb3_7_pro_b Q.B3_7 Proportion - Total Computer Software downloaded or accessed legally in the last 3 months qb3_3c Q.B3_3C Number - Computer Software shared in the last 3 months qb3_3d Q.B3_3D Number - Computer Software bought on disc or cartridge in the last 3 months qb3_041 Amazon \\ Amazon mp3 \\ Kindle : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_042 BitTorrent software : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_043 eDonkey \\ eMule : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_044 Email : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_045 Facebook : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_046 FilesTube : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_047 FTP software : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_048 Gnutella : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_049 Google (Search Engine) : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_410 Isohunt : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_411 iTunes \\ App Store \\ iBookstore \\ Apple Store : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_412 KickAssTorrents : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_413 Limewire : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_414 MediaFire : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_415 Microsoft : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_416 Pirate Bay : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_417 Rapidshare : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_418 Torrentz : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_419 uTorrent : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_420 Windows Messenger : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_421 www.clipconverter.cc : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_422 Yousendit : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_423 youtube-mp3.org : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_424 Other website or service : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_425 None/haven't used : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb3_426 Don’t know : Q.B3_4 Sites or services used in the last 3 months to access, or share Computer Software qb4_1total Q.B4_1TOTAL 3 month Spend - Films total qb4_1other Q.B4_1OTHER 3 month Spend - Films other qb4_1ai Q.B4_1Ai 3 month Spend - Films watched at the cinema qb4_1aii Q.B4_1Aii 3 month Spend - Films bought or rented on DVD, Bluray, or VHS qb4_1aiii Q.B4_1Aiii 3 month Spend - Films merchandise e.g. T-Shirts, Mugs, Posters qb4_1aiv Q.B4_1Aiv 3 month Spend - Online (full length) films bought and streamed/accessed or downloaded individually qb4_1av Q.B4_1Av 3 month Spend - Online film subscriptions qb4_1avi Q.B4_1Avi 3 month Spend - Films purchased individually through Pay TV service via Pay-per-view qb4_2a Q.B4_2A Frequency of downloading - Films qb4_2b Q.B4_2B Frequency of streaming - Films qb4_2c Q.B4_2C Frequency of sharing - Films qb4_3total Q.B4_3Total Number - Films total in the last 3 months qb4_3a Q.B4_3A Number - Films downloaded in the last 3 months qb4_3b Q.B4_3B Number - Films streamed in the last 3 months qb4_3ab Q.B4_3A/B Number - Films downloaded or streamed in the last 3 months qb4_5a Q.B4_5A Number - Films downloaded/streamed in the last 3 months - Paid for qb4_5a_pro Q.B4_5A Proportion - Films downloaded/streamed in the last 3 months paid for qb4_5ai Q.B4_5Ai Number - Films downloaded/streamed for free in the last 3 months qb4_5ai_pro Q.B4_5Ai Proportion - Films downloaded/streamed for free in the last 3 months qb4_6 Q.B4_6 Number - paid Films previously downloaded or streamed for free in the last 3 months qb4_6_pro Q.B4_6 Proportion - paid Films previously downloaded or streamed for free qb4_5b Q.B4_5B Number - Films downloaded/streamed in the last 3 months already owned on DVD, Blu-Ray or VHS qb4_5b_pro Q.B4_5B Proportion - Films downloaded/streamed in the last 3 months already owned on DVD, Blu-Ray or VHS qb4_5c Q.B4_5C Number - Films downloaded/streamed in the last 3 months already seen at cinema or through TV service qb4_5c_pro Q.B4_5C Proportion - Films downloaded/streamed in the last 3 months already seen at cinema or through TV service qb4_7b Q.B4_7B Number - Paid Films downloaded or streamed legally in the last 3 months qb4_7_pro_b1 Q.B4_7B Proportion - Paid films downloaded or streamed legally in the last 3 months qb4_7 Q.B4_7 Number - free Films downloaded or streamed legally in the last 3 months qb4_7_pro_a1 Q.B4_7 Proportion - free Films downloaded or streamed legally in the last 3 months qb4_7b_t Q.B4_7B_T Number - Total Films downloaded or streamed films legally in the last 3 months (Including paid illegal) qb4_7_pro_b2 Q.B4_7B Proportion - Total films downloaded or streamed legally in the last 3 months (Including paid illegal) qb4_7_t Q.B4_7_T Number - Total Films downloaded or streamed films in the last 3 months (presuming paid as legal) qb4_7_pro_a2 Q.B4_7 Proportion - Total Films downloaded or streamed legally in the last 3 months (presuming paid as legal) qb4_3c Q.B4_3C Number - Films shared in the last 3 months qb4_3d Q.B4_3D Number - Films bought or rented on DVD, Bluray or VHS in the last 3 months qb4_041 Amazon \\ Amazon mp3 \\ Kindle : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_042 Amazon Prime : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_043 BitTorrent software : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_044 Blinkbox : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_045 eDonkey \\ eMule : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_046 Email : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_047 Facebook : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_048 FilesTube : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_049 FTP software : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_410 Gnutella : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_411 Google (Search Engine) : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_412 Google Play \\ Android Marketplace : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_413 Hulu : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_414 Isohunt : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_415 iTunes \\ App Store \\ ibookstore \\ Apple Store : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_416 KickAssTorrents : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_417 Limewire : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_418 Lovefilm : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_419 MediaFire : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_420 Netflix : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_421 Now TV : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_422 Pirate Bay : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_423 Rapidshare : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_424 Samsung Movie Store : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_425 Sky Go : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_426 Software or service used to convert an online stream to a file : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_427 Sony Entertainment Network - Music Unlimited \\ Video Unlimited \\ Playstation Network : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_428 Torrentz : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_429 uTorrent : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_430 Virgin media : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_431 Windows Messenger : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_432 www.clipconverter.cc : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_433 Yousendit : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_434 YouTube : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_435 youtube-mp3.org : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_436 Zune : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_437 Other website or service : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_438 None/haven't used : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_439 Don’t know : Q.B4_4 Sites or services used in the last 3 months to stream, or share Films qb4_8a_01flt_a Q.B4_8A_01 Price Sensitivity - Films Download service - £3 qb4_8a_02flt_a Q.B4_8A_02 Price Sensitivity - Films Download service - £5 qb4_8a_03flt_a Q.B4_8A_03 Price Sensitivity - Films Download service - £7.50 qb4_8a_04flt_a Q.B4_8A_04 Price Sensitivity - Films Download service - £10 qb4_8a_05flt_a Q.B4_8A_05 Price Sensitivity - Films Download service - £12.50 qb4_8a_01a Q.B4_8A_01 Price Sensitivity - Films Download service - £3 qb4_8a_02a Q.B4_8A_02 Price Sensitivity - Films Download service - £5 qb4_8a_03a Q.B4_8A_03 Price Sensitivity - Films Download service - £7.50 qb4_8a_04a Q.B4_8A_04 Price Sensitivity - Films Download service - £10 qb4_8a_05a Q.B4_8A_05 Price Sensitivity - Films Download service - £12.50 qb4_8a_01e Q.B4_8A_01 Price Sensitivity - Films Download service - £3 qb4_8a_02e Q.B4_8A_02 Price Sensitivity - Films Download service - £5 qb4_8a_03e Q.B4_8A_03 Price Sensitivity - Films Download service - £7.50 qb4_8a_04e Q.B4_8A_04 Price Sensitivity - Films Download service - £10 qb4_8a_05e Q.B4_8A_05 Price Sensitivity - Films Download service - £12.50 qb4_8a_01f Q.B4_8A_01 Price Sensitivity - Films Download service - £3 qb4_8a_02f Q.B4_8A_02 Price Sensitivity - Films Download service - £5 qb4_8a_03f Q.B4_8A_03 Price Sensitivity - Films Download service - £7.50 qb4_8a_04f Q.B4_8A_04 Price Sensitivity - Films Download service - £10 qb4_8a_05f Q.B4_8A_05 Price Sensitivity - Films Download service - £12.50 qb4_8b_01flt_a Q.B4_8B_01 Price Sensitivity - Films Subscription service - £4 qb4_8b_02flt_a Q.B4_8B_02 Price Sensitivity - Films Subscription service - £6 qb4_8b_03flt_a Q.B4_8B_03 Price Sensitivity - Films Subscription service - £8 qb4_8b_04flt_a Q.B4_8B_04 Price Sensitivity - Films Subscription service - £10 qb4_8b_05flt_a Q.B4_8B_05 Price Sensitivity - Films Subscription service - £12 qb4_8b_01a Q.B4_8B_01 Price Sensitivity - Films Subscription service - £4 qb4_8b_02a Q.B4_8B_02 Price Sensitivity - Films Subscription service - £6 qb4_8b_03a Q.B4_8B_03 Price Sensitivity - Films Subscription service - £8 qb4_8b_04a Q.B4_8B_04 Price Sensitivity - Films Subscription service - £10 qb4_8b_05a Q.B4_8B_05 Price Sensitivity - Films Subscription service - £12 qb4_8b_01e Q.B4_8B_01 Price Sensitivity - Films Subscription service - £4 qb4_8b_02e Q.B4_8B_02 Price Sensitivity - Films Subscription service - £6 qb4_8b_03e Q.B4_8B_03 Price Sensitivity - Films Subscription service - £8 qb4_8b_04e Q.B4_8B_04 Price Sensitivity - Films Subscription service - £10 qb4_8b_05e Q.B4_8B_05 Price Sensitivity - Films Subscription service - £12 qb4_8b_01f Q.B4_8B_01 Price Sensitivity - Films Subscription service - £4 qb4_8b_02f Q.B4_8B_02 Price Sensitivity - Films Subscription service - £6 qb4_8b_03f Q.B4_8B_03 Price Sensitivity - Films Subscription service - £8 qb4_8b_04f Q.B4_8B_04 Price Sensitivity - Films Subscription service - £10 qb4_8b_05f Q.B4_8B_05 Price Sensitivity - Films Subscription service - £12 qb5_1total Q.B5_1TOTAL 3 month Spend - TV programmes total qb5_1ai Q.B5_1Ai 3 month Spend - TV programmes bought or rented on DVD, Blu-ray or VHS qb5_1aii Q.B5_1Aii 3 month Spend - TV programmes merchandise e.g. T-shirts, Mugs, Posters qb5_1aiii Q.B5_1Aiii 3 month Spend - TV programmes downloaded or streamed using an internet connection qb5_2a Q.B5_2A Frequency of downloading - TV programmes qb5_2b Q.B5_2B Frequency of streaming - TV programmes qb5_2c Q.B5_2C Frequency of sharing - TV programmes qb5_3total Q.B5_3Total Number - TV programmes total in the last 3 months qb5_3a Q.B5_3A Number - TV programmes downloaded in the last 3 months qb5_3b Q.B5_3B Number - TV programmes streamed in the last 3 months qb5_3ab Q.B5_3A/B Number - TV programmes downloaded or streamed in the last 3 months qb5_5a Q.B5_5A Number - TV programmes downloaded/streamed in the last 3 months - Paid for qb5_5a_pro Q.B5_5A Proportion - TV programmes downloaded/streamed in the last 3 months paid for qb5_5ai Q.B5_5Ai Number - TV programmes downloaded/streamed for free in the last 3 months qb5_5ai_pro Q.B5_5Ai Proportion - Films downloaded/streamed for free in the last 3 months qb5_6 Q.B5_6 Number - paid TV programmes previously downloaded or streamed for free in the last 3 months qb5_6_pro Q.B5_6 Proportion - paid TV programmes previously downloaded or streamed for free qb5_5b Q.B5_5B Number - TV programmes downloaded/streamed in the last 3 months already owned on DVD, Blu-Ray or VHS qb5_5b_pro Q.B5_5B Proportion - TV programmes downloaded/streamed in the last 3 months already owned on DVD, Blu-Ray or VHS qb5_7 Q.B5_7 Number - free TV programmes downloaded or streamed legally in the last 3 months qb5_7_t Q.B5_7_T Number - Total TV programmes downloaded or streamed TV programmes legally in the last 3 months qb5_7_pro_a Q.B5_7 Proportion - free TV programmes downloaded or streamed legally in the last 3 months qb5_7_pro_b Q.B5_7 Proportion - Total TV programmes downloaded or streamed legally in the last 3 months qb5_3c Q.B5_3C Number - TV programmes shared in the last 3 months qb5_3d Q.B5_3D Number - TV programmes bought or rented on disc or cartridge in the last 3 months qb5_041 4OD : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_042 Amazon \\ Amazon mp3 \\ Kindle : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_043 Amazon Prime : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_044 BBC iPlayer : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_045 BitTorrent software : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_046 Blinkbox : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_047 BT Vision : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_048 Demand 5 : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_049 eDonkey \\ eMule : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_410 Email : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_411 Facebook : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_412 FilesTube : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_413 FTP software : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_414 Gnutella : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_415 Google (Search Engine) : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_416 Hulu : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_417 Isohunt : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_418 iTunes \\ App Store \\ ibookstore \\ Apple Store : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_419 ITV Player : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_420 KickAssTorrents : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_421 Limewire : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_422 MediaFire : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_423 Netflix : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_424 Now TV : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_425 Pirate Bay : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_426 Rapidshare : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_427 Sky Go : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_428 Software or service used to convert an online stream to a file : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_429 Sopcast : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_430 Torrentz : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_431 TV Catchup : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_432 uTorrent : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_433 Windows Messenger : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_434 www.clipconverter.cc : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_435 Yousendit : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_436 YouTube : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_437 youtube-mp3.org : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_438 Other website or service : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_439 None/haven't used : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb5_440 Don’t know : Q.B5_4 Sites or services used in the last 3 months to stream, or share TV programmes qb6_1total Q.B6_1TOTAL 3 month Spend - Books total qb6_1ai Q.B6_1Ai 3 month Spend - Books - paper copies qb6_1aiii Q.B6_1Aiii 3 month Spend - Books merchandise e.g. T-shirts, Mugs, posters qb6_1aii Q.B6_1Aii 3 month Spend - e-Books - digital copies downloaded qb6_2a Q.B6_2A Frequency of downloading - e-Books qb6_2b Q.B6_2B Frequency of accessing - e-Books qb6_2c Q.B6_2C Frequency of sharing - e-Books qb6_3total Q.B6_3Total Number - Books total in the last 3 months qb6_3a Q.B6_3A Number - e-Books downloaded in the last 3 months qb6_3b Q.B6_3B Number - e-Books accessed in the last 3 months qb6_3ab Q.B6_3A/B Number - e-Books downloaded or accessed in the last 3 months qb6_5a Q.B6_5A Number - e-Books downloaded/accessed in the last 3 months - Paid for qb6_5a_pro Q.B6_5A Proportion - e-Books downloaded/accessed in the last 3 months paid for qb6_5ai Q.B6_5Ai Number - e-Books downloaded/accessed for free in the last 3 months qb6_5ai_pro Q.B6_5Ai Proportion - Books downloaded/accessed for free in the last 3 months qb6_6 Q.B6_6 Number - paid e-Books previously downloaded or accessed for free in the last 3 months qb6_6_pro Q.B6_6 Proportion - paid e-Books previously downloaded or accessed for free qb6_5b Q.B6_5B Number - e-Books downloaded/accessed in the last 3 months already owned on hardbacks and paperbacks qb6_5b_pro Q.B6_5B Proportion - e-Books downloaded/accessed in the last 3 months already owned on DVD, Blu-Ray or VHS qb6_7 Q.B6_7 Number - free e-Books downloaded or accessed legally in the last 3 months qb6_7_t Q.B6_7_T Number - Total e-Books downloaded or accessed books legally in the last 3 months qb6_7_pro_a Q.B6_7 Proportion - free e-Books downloaded or accessed legally in the last 3 months qb6_7_pro_b Q.B6_7 Proportion - Total e-Books downloaded or accessed legally in the last 3 months qb6_3c Q.B6_3C Number - e-Books shared in the last 3 months qb6_3d Q.B6_3D Number - Books bought on hardback or paperback in the last 3 months qb6_041 Amazon \\ Amazon mp3 \\ Kindle : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_042 BitTorrent software : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_043 eBooks.com : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_044 eDonkey \\ eMule : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_045 Email : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_046 Facebook : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_047 FilesTube : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_048 FTP software : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_049 Gnutella : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_410 Google (Search Engine) : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_411 Google Play \\ Android Marketplace : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_412 HMV Digital : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_413 Isohunt : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_414 iTunes \\ App Store \\ ibookstore \\ Apple Store : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_415 KickAssTorrents : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_416 Kobo \\ WH Smith : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_417 Limewire : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_418 MediaFire : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_419 Pirate Bay : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_420 Rapidshare : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_421 Scribd : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_422 Tesco : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_423 Torrentz : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_424 uTorrent : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_425 Waterstones : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_426 Windows Messenger : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_427 Yousendit : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_428 Other website or service : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_429 None/haven't used : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_430 Don’t know : Q.B6_4 Sites or services used in the last 3 months to access, or share e-Books qb6_8a_01flt_a Q.B6_8A_01 Price Sensitivity - e-Books Download service - £2 qb6_8a_02flt_a Q.B6_8A_02 Price Sensitivity - e-Books Download service - £4 qb6_8a_03flt_a Q.B6_8A_03 Price Sensitivity - e-Books Download service - £6 qb6_8a_04flt_a Q.B6_8A_04 Price Sensitivity - e-Books Download service - £8 qb6_8a_05flt_a Q.B6_8A_05 Price Sensitivity - e-Books Download service - £10 qb6_8a_01a Q.B6_8A_01 Price Sensitivity - e-Books Download service - £2 qb6_8a_02a Q.B6_8A_02 Price Sensitivity - e-Books Download service - £4 qb6_8a_03a Q.B6_8A_03 Price Sensitivity - e-Books Download service - £6 qb6_8a_04a Q.B6_8A_04 Price Sensitivity - e-Books Download service - £8 qb6_8a_05a Q.B6_8A_05 Price Sensitivity - e-Books Download service - £10 qb6_8a_01e Q.B6_8A_01 Price Sensitivity - e-Books Download service - £2 qb6_8a_02e Q.B6_8A_02 Price Sensitivity - e-Books Download service - £4 qb6_8a_03e Q.B6_8A_03 Price Sensitivity - e-Books Download service - £6 qb6_8a_04e Q.B6_8A_04 Price Sensitivity - e-Books Download service - £8 qb6_8a_05e Q.B6_8A_05 Price Sensitivity - e-Books Download service - £10 qb6_8a_01f Q.B6_8A_01 Price Sensitivity - e-Books Download service - £2 qb6_8a_02f Q.B6_8A_02 Price Sensitivity - e-Books Download service - £4 qb6_8a_03f Q.B6_8A_03 Price Sensitivity - e-Books Download service - £6 qb6_8a_04f Q.B6_8A_04 Price Sensitivity - e-Books Download service - £8 qb6_8a_05f Q.B6_8A_05 Price Sensitivity - e-Books Download service - £10 qb6_8b_01flt_a Q.B6_8B_01 Price Sensitivity - e-books Subscription service - £5 qb6_8b_02flt_a Q.B6_8B_02 Price Sensitivity - e-books Subscription service - £7.50 qb6_8b_03flt_a Q.B6_8B_03 Price Sensitivity - e-books Subscription service - £10 qb6_8b_04flt_a Q.B6_8B_04 Price Sensitivity - e-books Subscription service - £12.50 qb6_8b_05flt_a Q.B6_8B_05 Price Sensitivity - e-books Subscription service - £15 qb6_8b_01a Q.B6_8B_01 Price Sensitivity - e-books Subscription service - £5 qb6_8b_02a Q.B6_8B_02 Price Sensitivity - e-books Subscription service - £7.50 qb6_8b_03a Q.B6_8B_03 Price Sensitivity - e-books Subscription service - £10 qb6_8b_04a Q.B6_8B_04 Price Sensitivity - e-books Subscription service - £12.50 qb6_8b_05a Q.B6_8B_05 Price Sensitivity - e-books Subscription service - £15 qb6_8b_01e Q.B6_8B_01 Price Sensitivity - e-books Subscription service - £5 qb6_8b_02e Q.B6_8B_02 Price Sensitivity - e-books Subscription service - £7.50 qb6_8b_03e Q.B6_8B_03 Price Sensitivity - e-books Subscription service - £10 qb6_8b_04e Q.B6_8B_04 Price Sensitivity - e-books Subscription service - £12.50 qb6_8b_05e Q.B6_8B_05 Price Sensitivity - e-books Subscription service - £15 qb6_8b_01f Q.B6_8B_01 Price Sensitivity - e-books Subscription service - £5 qb6_8b_02f Q.B6_8B_02 Price Sensitivity - e-books Subscription service - £7.50 qb6_8b_03f Q.B6_8B_03 Price Sensitivity - e-books Subscription service - £10 qb6_8b_04f Q.B6_8B_04 Price Sensitivity - e-books Subscription service - £12.50 qb6_8b_05f Q.B6_8B_05 Price Sensitivity - e-books Subscription service - £15 qb7_041 Amazon \\ Amazon mp3 \\ Kindle : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_042 BitTorrent software : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_043 www.clipconverter.cc : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_044 eBooks.com : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_045 eDonkey \\ eMule : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_046 Email : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_047 Facebook : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_048 FilesTube : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_049 FTP software : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_410 Gnutella : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_411 Google (Search Engine) : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_412 Google Play \\ Android Marketplace : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_413 HMV Digital : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_414 Isohunt : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_415 iTunes \\ App Store \\ ibookstore \\ Apple Store : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_416 KickAssTorrents : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_417 Kobo \\ WH Smith : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_418 Limewire : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_419 MediaFire : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_420 Pirate Bay : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_421 Rapidshare : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_422 Scribd : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_423 Tesco : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_424 Torrentz : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_425 uTorrent : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_426 Waterstones : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_427 Windows Messenger : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_428 Yousendit : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_429 youtube-mp3.org : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_430 Other website or service : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_431 Zinio : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_432 Direct from Magazine Website : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qb7_433 No Answer : Q.B7_4 Sites or services used in the last 3 months to download stream\\access or share magazines qbx_1total Q.BX_1TOTAL (Combined files of interest) 3 month Spend - Total qbx_ai Q.BX_Ai (Combined files of interest) 3 month Spend - Physical copies qbx_aii Q.BX_Aii (Combined files of interest) 3 month Spend - Individual online purchases (downloads/streams) qbx_aiii Q.BX_Aiii (Combined files of interest) 3 month Spend - Online purchases + Subscriptions qbx_av Q.BX_Av (Combined files of interest) 3 month Spend - Other qbx_3total Q.Bx_3TOTAL (Combined files of interest) Number - Summary Total in the last 3 months qbx_3a_tot Q.Bx_3A (Combined files of interest) Number - content types of interest downloaded in the last 3 months qbx_3b_tot Q.Bx_3B Number - content types of interest streamed/accessed in the last 3 months qbx_3ab_tot Q.Bx_3A/B (Combined files of interest) Number - content types of interest downloaded or streamed/accessed in the last 3 months qbx_5a_tot Q.Bx_5A (Combined files of interest) Number - content types of interest downloaded or streamed/accessed in the last 3 months - Paid for qbx_5ai_tot Q.Bx_5Ai (Combined files of interest) Number - content types of interest downloaded or streamed/accessed for free in the last 3 months qbx_5a_pro Q.Bx_5A (Combined files of interest) Proportion - content types of interest downloaded/streamed/accessed in the last 3 months - paid for qbx_5ai_pro Q.Bx_5Ai (Combined files of interest) Proportion - content types of interest downloaded/streamed/accessed for free in the last 3 months qbx_6_num Q.Bx_6 (Combined files of interest) Number - paid content types of interest previously downloaded or streamed/accessed for free qbx_6_pro Q.Bx_6 (Combined files of interest) Proportion - paid content types of interest previously downloaded or streamed/accessed for free qbx_5b_tot Q.Bx_5B (Combined files of interest) Number - downloaded/accessed/streamed content types of interest in the last 3 months already owned in physical format qbx_5b_pro Q.Bx_5B (Combined files of interest) Proportion - downloaded/streamed/accessed content types of interest in the last 3 months already owned in physical format qbx_7b_a Q.Bx_7B (Combined files of interest) Number - paid content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7b_pro Q.Bx_7B (Combined files of interest) Proportion - paid content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7a_a Q.Bx_7 (Combined files of interest) Number - free content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7_pro_a Q.Bx_7 (Combined files of interest) Proportion - free content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7a_b Q.Bx_7 (Combined files of interest) Number - total content types of interest downloaded or streamed/accessed legally in the last 3 months (including paid illegal) qbx_7_pro_b Q.Bx_7 (Combined files of interest) Proportion - total content types of interest downloaded or accessed legally in the last 3 months (including paid illegal) qbx_7a_ab Q.Bx_7 (Combined files of interest) Number - total content types of interest downloaded or streamed/accessed legally in the last 3 months (presuming paid as legal) qbx_7_pro_ab Q.Bx_7 (Combined files of interest) Proportion - total content types of interest downloaded or accessed legally in the last 3 months (presuming paid as legal) qbx_3c Q.Bx_3C (Combined files of interest) Number - content types of interest shared in the last 3 months qbx_3d Q.Bx_3D (Combined files of interest) Number - content types of interest bought in physical format in the last 3 months qbx_041 4OD : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_042 Amazon \\ Amazon mp3 \\ Kindle : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_043 Amazon Music : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_044 Apple Music : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_045 Amazon Prime : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_046 iTunes \\ App Store \\ iBookstore \\ Apple Store : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_047 BBC iPlayer : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_048 BitTorrent software : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_049 Microsoft : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_410 BT Vision : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_411 Demand 5 : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_412 7 Digital : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_413 eDonkey / eMule : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_414 Email : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_415 Blinkbox : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_416 Facebook : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_417 FilesTube : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_418 Free music download app (on a mobile phone or tablet PC) : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_419 FTP software : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_420 Gnutella : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_421 Google (Search Engine) : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_422 eBooks.com : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_423 eMusic : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_424 Isohunt : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_425 Google Play \\ Android Marketplace : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_426 Hulu : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_427 ITV Player : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_428 KickAssTorrents : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_429 HMV Digital : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_430 Last FM : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_431 Limewire : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_432 Kobo \\ WH Smith : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_433 MediaFire : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_434 Lovefilm : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_435 Miniclip : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_436 MP3Skull : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_437 Napster : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_438 Netflix : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_439 Now TV : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_440 Pirate Bay : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_441 Play.com : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_442 Rapidshare : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_443 Samsung Movie Store : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_444 Scribd : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_445 Sky Go : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_446 software or service used to convert an online stream to a file : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_447 Sony Entertainment Network - Music Unlimited \\ Video Unlimited \\ Playstation Network : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_448 Sopcast : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_449 Spotify : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_450 Steam : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_451 Tesco : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_452 Tidal : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_453 Torrentz : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_454 TV Catchup : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_455 uTorrent : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_456 Virgin media : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_457 Waterstones : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_458 We7 : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_459 Wii Shop channel : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_460 Windows Messenger : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_461 www.clipconverter.cc : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_462 Xbox Live : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_463 Yousendit : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_464 YouTube : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_465 Zune : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_466 youtube-mp3.org : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_467 Other website or service : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_468 None/haven't used : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_469 Don’t know : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest qbx_470 Not Answered : Q.Bx_4 (Combined files of interest) Sites or services used in the last 3 months to download, stream/access, or share content types of interest q31 4OD : Q.3 Total awareness of Online services q32 7 Digital : Q.3 Total awareness of Online services q33 Amazon \\ Amazon mp3 \\ Kindle : Q.3 Total awareness of Online services q34 Apple Music : Q.3 Total awareness of Online services q35 Amazon Music : Q.3 Total awareness of Online services q36 Amazon Prime : Q.3 Total awareness of Online services q37 BBC iPlayer : Q.3 Total awareness of Online services q38 Blinkbox : Q.3 Total awareness of Online services q39 Demand 5 : Q.3 Total awareness of Online services q310 eMusic : Q.3 Total awareness of Online services q311 Google Play \\ Android Marketplace : Q.3 Total awareness of Online services q312 Hulu : Q.3 Total awareness of Online services q313 HMV Digital : Q.3 Total awareness of Online services q314 iTunes \\ App Store \\ ibookstore \\ Apple Store : Q.3 Total awareness of Online services q315 ITV Player : Q.3 Total awareness of Online services q316 Last FM : Q.3 Total awareness of Online services q317 Lovefilm : Q.3 Total awareness of Online services q318 Miniclip : Q.3 Total awareness of Online services q319 Napster : Q.3 Total awareness of Online services q320 Netflix : Q.3 Total awareness of Online services q321 Play.com : Q.3 Total awareness of Online services q322 Samsung Movie Store : Q.3 Total awareness of Online services q323 Sky Go : Q.3 Total awareness of Online services q324 Sony Entertainment Network - Music Unlimited : Q.3 Total awareness of Online services q325 Spotify : Q.3 Total awareness of Online services q326 Steam : Q.3 Total awareness of Online services q327 Tidal : Q.3 Total awareness of Online services q328 We7 : Q.3 Total awareness of Online services q329 www.clipconverter.cc : Q.3 Total awareness of Online services q330 Xbox Live : Q.3 Total awareness of Online services q331 youtube-mp3.org : Q.3 Total awareness of Online services q332 YouTube : Q.3 Total awareness of Online services q333 Zune : Q.3 Total awareness of Online services q334 Other website or service : Q.3 Total awareness of Online services q335 Don't Know : Q.3 Total awareness of Online services q3x1 Spotify : Q.3X Which, if any, of the following do you currently pay to have access to? q3x2 Apple Music : Q.3X Which, if any, of the following do you currently pay to have access to? q3x3 Amazon Music : Q.3X Which, if any, of the following do you currently pay to have access to? q3x4 Tidal : Q.3X Which, if any, of the following do you currently pay to have access to? q3x5 Netflix : Q.3X Which, if any, of the following do you currently pay to have access to? q3x6 Amazon Prime : Q.3X Which, if any, of the following do you currently pay to have access to? q3x7 Hulu : Q.3X Which, if any, of the following do you currently pay to have access to? q3x8 Now TV : Q.3X Which, if any, of the following do you currently pay to have access to? q3x9 Lovefilm : Q.3X Which, if any, of the following do you currently pay to have access to? q3x10 Scribd : Q.3X Which, if any, of the following do you currently pay to have access to? q3x11 None of these : Q.3X Which, if any, of the following do you currently pay to have access to? q3x12 Don't Know : Q.3X Which, if any, of the following do you currently pay to have access to? q4a Q.4A Agreement statement q4b Q.4B Agreement statement q4c Q.4C Agreement statement q4d Q.4D Agreement statement q4e Q.4E Agreement statement q4f Q.4F Agreement statement q4g Q.4G Agreement statement q4h Q.4H Agreement statement q51 It's easier\\more convenient : Q.5 Reasons for downloading rather than buying a physical version q52 It's quicker : Q.5 Reasons for downloading rather than buying a physical version q53 It's cheaper : Q.5 Reasons for downloading rather than buying a physical version q54 I can get them for free : Q.5 Reasons for downloading rather than buying a physical version q55 The quality isn't noticeably different : Q.5 Reasons for downloading rather than buying a physical version q56 It's more up-to-date : Q.5 Reasons for downloading rather than buying a physical version q57 It's what everyone does : Q.5 Reasons for downloading rather than buying a physical version q58 I can access them more easily on the devices I have : Q.5 Reasons for downloading rather than buying a physical version q59 No physical version available : Q.5 Reasons for downloading rather than buying a physical version q510 I can access them on the go : Q.5 Reasons for downloading rather than buying a physical version q511 Less clutter/storage/space issues : Q.5 Reasons for downloading rather than buying a physical version q512 Can download part (album)/just 1 song/just what I want : Q.5 Reasons for downloading rather than buying a physical version q513 I haven't downloaded anything illegal/not interested : Q.5 Reasons for downloading rather than buying a physical version q514 To try before I buy : Q.5 Reasons for downloading rather than buying a physical version q515 Part of a/my subscription : Q.5 Reasons for downloading rather than buying a physical version q516 To catch up on things I have missed : Q.5 Reasons for downloading rather than buying a physical version q517 Portable/can use anywhere : Q.5 Reasons for downloading rather than buying a physical version q518 Other reason : Q.5 Reasons for downloading rather than buying a physical version q519 Don't know : Q.5 Reasons for downloading rather than buying a physical version q61 I'm not interested : Q.6 Reasons for not downloading q62 I prefer to have a physical copy : Q.6 Reasons for not downloading q63 I prefer to stream\\access (without downloading) files : Q.6 Reasons for not downloading q64 They are too expensive : Q.6 Reasons for not downloading q65 The quality is not as good : Q.6 Reasons for not downloading q66 It is easier to buy physical copies : Q.6 Reasons for not downloading q67 I do not have a credit\\debit card : Q.6 Reasons for not downloading q68 I fear that they could be illegal : Q.6 Reasons for not downloading q69 I fear they may have viruses\\ malware \\ spyware : Q.6 Reasons for not downloading q610 I'm unaware of the download services available : Q.6 Reasons for not downloading q611 I'm not sure how to do it : Q.6 Reasons for not downloading q612 I don't own a computer \\ device capable of downloading : Q.6 Reasons for not downloading q613 Physical copies are more flexible : Q.6 Reasons for not downloading q614 I am not allowed to (by Mum or Dad) : Q.6 Reasons for not downloading q615 Computer does not have capacity/download speed : Q.6 Reasons for not downloading q616 Nothing that I wanted/needed : Q.6 Reasons for not downloading q617 Trying to save money/short of funds : Q.6 Reasons for not downloading q618 No time/busy doing other things : Q.6 Reasons for not downloading q619 Someone else does this (for me) : Q.6 Reasons for not downloading q620 Concerns about using card/payments online : Q.6 Reasons for not downloading q621 I don't have/ no access to/use the internet : Q.6 Reasons for not downloading q622 Health reasons prevent usage\\unwell\\poor eyesight : Q.6 Reasons for not downloading q623 I don't do this : Q.6 Reasons for not downloading q624 Other reason : Q.6 Reasons for not downloading q625 None : Q.6 Reasons for not downloading q626 Don't know : Q.6 Reasons for not downloading q71 It's easier\\more convenient : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q72 It's quicker : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q73 They are better quality : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q74 I don't want to use illegal sites : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q75 I think it's morally wrong to use illegal sites : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q76 I want to support creators\\industry : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q77 I fear they may have viruses \\ malware \\ spyware : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q78 I fear I might be caught : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q79 I can afford to pay : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q710 I prefer to pay : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q711 I don't think it is right to get them for free : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q712 I'm unaware of the free services available : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q713 I don't know how to use the free services : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q714 Free/ cheap/ part of a subscription : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q715 Parents would not allow me to use free service : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q716 Were not available for free : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q717 Had gift card/voucher : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q718 Have not done so\\does not apply to me : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q719 Other reason : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q720 Don't know : Q.7 Reasons for using paid for services to download or access/stream rather than free ones q81 It's easy\\convenient : Q.8 Reasons for accessing or streaming online q82 It's quick : Q.8 Reasons for accessing or streaming online q83 It's free : Q.8 Reasons for accessing or streaming online q84 It's easy to do : Q.8 Reasons for accessing or streaming online q85 It's quicker than downloading : Q.8 Reasons for accessing or streaming online q86 It's cheaper than downloading : Q.8 Reasons for accessing or streaming online q87 It means I don't have to download them : Q.8 Reasons for accessing or streaming online q88 It means I can try something before I buy it : Q.8 Reasons for accessing or streaming online q89 It's what my friends or family do : Q.8 Reasons for accessing or streaming online q810 My friends can't access files themselves : Q.8 Reasons for accessing or streaming online q811 My family can't access files themselves : Q.8 Reasons for accessing or streaming online q812 Some types of files are too expensive to buy : Q.8 Reasons for accessing or streaming online q813 For entertainment : Q.8 Reasons for accessing or streaming online q814 Don't have a TV \\ radio : Q.8 Reasons for accessing or streaming online q815 To watch programmes I have missed (on TV) : Q.8 Reasons for accessing or streaming online q816 Content unavailable elsewhere : Q.8 Reasons for accessing or streaming online q817 Part of a subsriciption : Q.8 Reasons for accessing or streaming online q818 I don't do that : Q.8 Reasons for accessing or streaming online q819 For education/ research : Q.8 Reasons for accessing or streaming online q820 Can use/watch on the move : Q.8 Reasons for accessing or streaming online q821 I pay/ it's legal : Q.8 Reasons for accessing or streaming online q822 To watch a specific programme : Q.8 Reasons for accessing or streaming online q823 Other reason : Q.8 Reasons for accessing or streaming online q824 Don't know : Q.8 Reasons for accessing or streaming online q91 It's easy to do : Q.9 Reasons for sharing files online q92 It's only fair : Q.9 Reasons for sharing files online q93 It's what everyone does : Q.9 Reasons for sharing files online q94 I don't know how to share them : Q.9 Reasons for sharing files online q95 It gives me status : Q.9 Reasons for sharing files online q96 My friends\\family cant access files themselves : Q.9 Reasons for sharing files online q97 I should be able to share my content with whomever I choose : Q.9 Reasons for sharing files online q98 Unless I share content, I can't download other files myself : Q.9 Reasons for sharing files online q99 To share (with others) : Q.9 Reasons for sharing files online q910 I wrote/ composed it : Q.9 Reasons for sharing files online q911 I haven't/ don't : Q.9 Reasons for sharing files online q912 Other reason : Q.9 Reasons for sharing files online q913 Na/none : Q.9 Reasons for sharing files online q914 Don't know : Q.9 Reasons for sharing files online q10a1 It's easy\\convenient : Q.10A Reasons for using illegal services to download or stream/access files q10a2 It's quick : Q.10A Reasons for using illegal services to download or stream/access files q10a3 It's free : Q.10A Reasons for using illegal services to download or stream/access files q10a4 It means I can try something before I buy it : Q.10A Reasons for using illegal services to download or stream/access files q10a5 It's what my friends or family do : Q.10A Reasons for using illegal services to download or stream/access files q10a6 Because I can : Q.10A Reasons for using illegal services to download or stream/access files q10a7 I already owned content in another format : Q.10A Reasons for using illegal services to download or stream/access files q10a8 I've already paid to see it\\them at the cinema\\in concert, etc : Q.10A Reasons for using illegal services to download or stream/access files q10a9 I don't want to wait for content to become available on legal services : Q.10A Reasons for using illegal services to download or stream/access files q10a10 I can't afford to pay : Q.10A Reasons for using illegal services to download or stream/access files q10a11 I think legal content is too expensive : Q.10A Reasons for using illegal services to download or stream/access files q10a12 I think legal content is too poor quality : Q.10A Reasons for using illegal services to download or stream/access files q10a13 The files I want are not available on legal services : Q.10A Reasons for using illegal services to download or stream/access files q10a14 I don't think I should have to pay for files online? : Q.10A Reasons for using illegal services to download or stream/access files q10a15 The Industry makes too much money : Q.10A Reasons for using illegal services to download or stream/access files q10a16 I already spend enough on content : Q.10A Reasons for using illegal services to download or stream/access files q10a17 No one suffers : Q.10A Reasons for using illegal services to download or stream/access files q10a18 No one ever gets caught : Q.10A Reasons for using illegal services to download or stream/access files q10a19 It gives me status : Q.10A Reasons for using illegal services to download or stream/access files q10a20 Wasn't sure of legality/not sure if legal or not : Q.10A Reasons for using illegal services to download or stream/access files q10a21 I didn't think/know/realise it was illegal/was in error : Q.10A Reasons for using illegal services to download or stream/access files q10a22 I have paid for it : Q.10A Reasons for using illegal services to download or stream/access files q10a23 I have not downloaded/accessed illegally : Q.10A Reasons for using illegal services to download or stream/access files q10a24 I didn't say that/give that answer (no detail) : Q.10A Reasons for using illegal services to download or stream/access files q10a25 I'm confused/don't understand the question : Q.10A Reasons for using illegal services to download or stream/access files q10a26 Other reason : Q.10A Reasons for using illegal services to download or stream/access files q10a27 Not applicable/None : Q.10A Reasons for using illegal services to download or stream/access files q10a28 Don't know : Q.10A Reasons for using illegal services to download or stream/access files q10b1 If everyone else stopped doing it : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b2 If legal services were better : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b3 If legal services were cheaper : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b4 If legal services were more convenient\\flexible : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b5 If everything I wanted was available legally : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b6 If I thought I might be caught : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b7 If I thought I might be sued : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b8 If my ISP sent me a letter informing me my account had been used to infringe : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b9 If my ISP sent me a letter saying they would restrict my internet speed : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b10 If my ISP sent me a letter saying they would suspend my internet access : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b11 If friends or family were caught : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b12 If there were articles in the media about people being caught : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b13 If a subscription service I was interested in became available : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b14 If everything I wanted was available legally online as soon as it was released elsewhere : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b15 If it is clearer what is legal and what isn't : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b16 If I knew where to go to see if something was illegal or not : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b17 I do not do this/do not download illegally/always use legal site : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b18 Would/do not do it intentionally/if thought was illegal I wouldn't do it : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b19 If I got a virus/concerned about viruses : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b20 Did not say this/was not my answer (no further detail) : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b21 Other reason : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b22 Nothing would make me stop : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b23 Not applicable/None : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q10b24 Don't know : Q.10B Aspects that would encourage stopping downloading or streaming/accessing files illegally q11a Q.11A How confident are you that you know what is legal and what isn't in terms of downloading, streaming\\accessing, and sharing content through the internet? q11b1 Reputable/well known company or brand (including those advertised) : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b2 Government approval/accreditation : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b4 Site doesn’t contain certain elements (Viruses, Pop up adverts, etc...) : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b5 Do not (download/stream/access) illegally : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b6 Do not download : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b7 I'm not interested : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b8 It's illegal/against the law/people shouldn't do it : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b9 Free/easily accessible/quick : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b10 Difficult to know if its legal or not/don't trust it : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b11 (Warning) information on site : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b12 Rely on other people to tell me/do it for me/word of mouth/reviews : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b13 If there was industry/standard symbol/kite mark to show (clearly) it was legal : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b14 Quality/professional/official (looking) site : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b15 If the website clearly stated that it was legal : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b16 Payment/cost/price : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b17 If there was a site/organisation I could go to check with listing of legal/authorised sites : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b18 Previous knowledge/already know they are legal : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b19 Copyright statements : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b20 Research the company : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b21 Approved website/ recognised governing body : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b22 Endorsements from / backed by music industry / artist / owner : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b23 Don't know much about downloading / how to download : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b24 Have (anti virus) software that tells me/lets me in : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b25 Address/ web domain : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b26 You know when it's legal/illegal/I know/would know/common sense : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b27 Because it's there/you can download/wouldn't be online if not legal/would have been removed : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b28 Offers some free and some paid for/I pay for some/some are free : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b29 Licensed/it has a licence/part of a licence : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b30 Good : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b31 Other answers : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? q11b32 None/Don't Know : Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? csex GENDER cage2 AGE cage6 AGE cage8 AGE class3 SOCIAL CLASS class41 AB : SOCIAL CLASS class42 C1 : SOCIAL CLASS class43 C2 : SOCIAL CLASS class44 DE : SOCIAL CLASS class45 ABC1 : SOCIAL CLASS class46 C2DE : SOCIAL CLASS class5 SOCIAL CLASS cmari1 MARITAL STATUS cwork1 WORKING STATUS cwork5 WORKING STATUS child2 PRESENCE OF CHILDREN child51 Any : PRESENCE OF CHILDREN child52 None : PRESENCE OF CHILDREN child53 0-5 years : PRESENCE OF CHILDREN child54 6-10 years : PRESENCE OF CHILDREN child55 11-15 years : PRESENCE OF CHILDREN chsex1 Male : PRESENCE OF CHILDREN chsex2 Female : PRESENCE OF CHILDREN cads NUMBER OF ADULTS IN HOUSEHOLD chhs HOUSEHOLD SIZE cnet2_ INTERNET ACCESS cnet_01 Using a Wi-Fi (wireless) connection to broadband : INTERNET ACCESS cnet_02 Using a wired (Ethernet) connection to broadband : INTERNET ACCESS cnet_03 Using a mobile network e.g. using 3G/4G on a smartphone\\tablet\\dongle : INTERNET ACCESS cnet_04 Using a dial-up connection to the internet i.e. you cannot make phone calls at the same time : INTERNET ACCESS cnet_05 While travelling using a Wi-Fi (wireless) network : INTERNET ACCESS cnet_06 While travelling using a mobile network e.g. using 3G\\4G on a smartphone\\tablet\\dongle : INTERNET ACCESS cnet_07 At work or place of study : INTERNET ACCESS cnet_08 In a public place (e.g. café or library) using a Wi-Fi (wireless) network : INTERNET ACCESS cnet_09 In a public place (e.g. café or library) using a wired (Ethernet) connection to broadband : INTERNET ACCESS cnet_10 In a public place (e.g. café or library) using a mobile network e.g. using 3G\\4G on a smartphone\\tab : INTERNET ACCESS cnet_11 Home\\personal email address : INTERNET ACCESS cnet_12 Work email address : INTERNET ACCESS cnet_13 None of these\\Don't access the internet : INTERNET ACCESS satcab81 Multi channel with monthly subscription : CABLE/ SATELLITE/ DIGITAL RECEIVED satcab82 Free Multi channel TV : CABLE/ SATELLITE/ DIGITAL RECEIVED satcab83 No multi channel : CABLE/ SATELLITE/ DIGITAL RECEIVED cphone5 PHONE cten TENURE rural2 AREA country1 COUNTRY gor GOVERNMENT REGIONS govreg3 GOVERNMENT REGIONS ceth ETHNICITY ceth3 ETHNIC ORIGIN break2_int_acc Q.D INTERNET USAGE break2_device1 Any Mobile : Q.C DEVICES PERSONALLY USED break2_device2 Any mobile (not a smartphone) : Q.C DEVICES PERSONALLY USED break2_device3 Computer : Q.C DEVICES PERSONALLY USED break2_device4 Tablet : Q.C DEVICES PERSONALLY USED break2_device5 Ebook reader : Q.C DEVICES PERSONALLY USED break2_device6 Games Console : Q.C DEVICES PERSONALLY USED break2_device7 Mobile games device : Q.C DEVICES PERSONALLY USED break2_tvtype1 Pay TV : Q.B TV TYPE break2_tvtype2 FTA only : Q.B TV TYPE break2_tvtype3 No Multi Channel : Q.B TV TYPE break_b1_q3c1_2 MUSIC TRACKS OWNED IN DIGITAL FORMAT (AMONGST SHARERS) (Q.B1_3C1) break4_q1a_q2a1 Ever : DOWNLOADED (ANY FILES OF INTEREST) (Q1A/Q2A) break4_q1a_q2a2 Last 3 months : DOWNLOADED (ANY FILES OF INTEREST) (Q1A/Q2A) break4_q1b_q2b1 Ever : STREAMED (ANY FILES OF INTEREST) (Q1B/Q2B) break4_q1b_q2b2 Last 3 months : STREAMED (ANY FILES OF INTEREST) (Q1B/Q2B) break4_q1c_q2c1 Ever : SHARED (ANY FILES OF INTEREST) (Q1C/Q2C) break4_q1c_q2c2 Last 3 months : SHARED (ANY FILES OF INTEREST) (Q1C/Q2C) break4_q1abc_q2abc1 Ever : DOWNLOADED/STREAMED/SHARED (Q1ABC/Q2ABC) break4_q1abc_q2abc2 Last 3 months : DOWNLOADED/STREAMED/SHARED (Q1ABC/Q2ABC) break_music01 Downloaded : MUSIC (LEGALITY GROUPS) break_music02 Streamed : MUSIC (LEGALITY GROUPS) break_music03 Shared : MUSIC (LEGALITY GROUPS) break_music04 Downloaded or streamed (consumed) : MUSIC (LEGALITY GROUPS) break_music05 100% paid : MUSIC (LEGALITY GROUPS) break_music06 Mix of paid and free : MUSIC (LEGALITY GROUPS) break_music07 100% free : MUSIC (LEGALITY GROUPS) break_music08 Any Paid : MUSIC (LEGALITY GROUPS) break_music09 Any Free : MUSIC (LEGALITY GROUPS) break_music10 100% legal : MUSIC (LEGALITY GROUPS) break_music11 Mix of legal and illegal : MUSIC (LEGALITY GROUPS) break_music12 100% illegal : MUSIC (LEGALITY GROUPS) break_music13 Any illegal : MUSIC (LEGALITY GROUPS) break_music14 Any Legal : MUSIC (LEGALITY GROUPS) break_music15 100% legal : MUSIC (LEGALITY GROUPS) break_music16 Mix of legal and illegal : MUSIC (LEGALITY GROUPS) break_music17 100% illegal : MUSIC (LEGALITY GROUPS) break_music18 Any illegal : MUSIC (LEGALITY GROUPS) break_music19 Any Legal : MUSIC (LEGALITY GROUPS) break_videogames01 Downloaded : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames02 Accessed : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames03 Shared : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames04 100% paid : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames05 Mix of paid and free : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames06 100% free : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames07 Any Paid : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames08 Any Free : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames09 100% legal : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames10 Mix of legal and illegal : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames11 100% illegal : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames12 Any illegal : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_videogames13 Any Legal : VIDEO GAMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software01 Downloaded : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software02 Accessed : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software03 Shared : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software04 100% paid : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software05 Mix of paid and free : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software06 100% free : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software07 Any Paid : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software08 Any Free : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software09 100% legal : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software10 Mix of legal and illegal : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software11 100% illegal : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software12 Any illegal : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_software13 Any Legal : COMPUTER SOFTWARE (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_films01 Downloaded : FILMS (LEGALITY GROUPS) break_films02 Streamed : FILMS (LEGALITY GROUPS) break_films03 Shared : FILMS (LEGALITY GROUPS) break_films04 Downloaded or streamed (consumed) : FILMS (LEGALITY GROUPS) break_films05 100% paid : FILMS (LEGALITY GROUPS) break_films06 Mix of paid and free : FILMS (LEGALITY GROUPS) break_films07 100% free : FILMS (LEGALITY GROUPS) break_films08 Any Paid : FILMS (LEGALITY GROUPS) break_films09 Any Free : FILMS (LEGALITY GROUPS) break_films10 100% legal : FILMS (LEGALITY GROUPS) break_films11 Mix of legal and illegal : FILMS (LEGALITY GROUPS) break_films12 100% illegal : FILMS (LEGALITY GROUPS) break_films13 Any illegal : FILMS (LEGALITY GROUPS) break_films14 Any Legal : FILMS (LEGALITY GROUPS) break_films15 100% legal : FILMS (LEGALITY GROUPS) break_films16 Mix of legal and illegal : FILMS (LEGALITY GROUPS) break_films17 100% illegal : FILMS (LEGALITY GROUPS) break_films18 Any illegal : FILMS (LEGALITY GROUPS) break_films19 Any Legal : FILMS (LEGALITY GROUPS) break_tv_prgrms01 Downloaded : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms02 Streamed : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms03 Shared : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms04 100% paid : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms05 Mix of paid and free : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms06 100% free : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms07 Any Paid : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms08 Any Free : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms09 100% legal : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms10 Mix of legal and illegal : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms11 100% illegal : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms12 Any illegal : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_tv_prgrms13 Any Legal : TV PROGRAMMES (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books01 Downloaded : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books02 Accessed : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books03 Shared : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books04 100% paid : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books05 Mix of paid and free : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books06 100% free : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books07 Any Paid : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books08 Any Free : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books09 100% legal : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books10 Mix of legal and illegal : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books11 100% illegal : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books12 Any illegal : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_books13 Any Legal : BOOKS (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_011 Downloaded : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_012 Streamed/Accessed : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_013 Shared : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_014 100% paid : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_015 Mix of paid and free : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_016 100% free : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_017 Any Paid : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_018 Any Free : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_019 100% legal : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_110 Mix of legal and illegal : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_111 100% illegal : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_112 Any illegal : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_113 Any legal : TOTAL (LEGALITY GROUPS (INC. FREE ILLEGAL ONLY)) break_combine_021 Downloaded : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_022 Streamed/Accessed : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_023 Shared : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_024 100% paid : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_025 Mix of paid and free : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_026 100% free : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_027 Any Paid : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_028 Any Free : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_029 100% legal : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_210 Mix of legal and illegal : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_211 100% illegal : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_212 Any illegal : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_combine_213 Any legal : TOTAL (LEGALITY GROUPS (INC. PAID AND FREE ILLEGAL)) break_methodology1 Total All methodologies : METHODOLOGY TYPE break_methodology2 CAPI total : METHODOLOGY TYPE break_methodology3 Online total : METHODOLOGY TYPE break_methodology4 Online Adults : METHODOLOGY TYPE break_methodology5 Online 12-15s : METHODOLOGY TYPE wts_var Weight Variable cexage Exact age qb1_1total_raw Q.B1_1TOTAL 3 month Spend - Music total qb1_1aother_raw Q.B1_1OTHER 3 month Spend - Music other qb1_1ai_raw Q.B1_1Ai 3 month Spend - Music concerts or gigs qb1_1aii_raw Q.B1_1Aii 3 month Spend - Music merchandise qb1_1aiii_raw Q.B1_1Aiii 3 month Spend - Music tracks or albums on CD or Vinyl qb1_1aiv_raw Q.B1_1Aiv 3 month Spend - Music tracks or albums downloaded or streamed/accessed online qb1_1av_raw Q.B1_1Av 3 month Spend - Music subscriptions qb2_1total_raw Q.B2_1TOTAL 3 month Spend - Video Games total qb2_1ai_raw Q.B2_1Ai 3 month Spend - Video Games on Disc or Cartridge qb2_1aii_raw Q.B2_1Aii 3 month Spend - Video Games downloaded or accessed qb2_1aiii_raw Q.B2_1Aiii 3 month Spend - Video Games merchandise e.g. Tshirts, Mugs, Posters qb3_1total_raw Q.B3_1TOTAL 3 month Spend - Computer Software total qb3_1ai_raw Q.B3_1Ai 3 month Spend - Computer Software on disc or Cartridge qb3_1aii_raw Q.B3_1Aii 3 month Spend - Computer Software downloaded or accessed qb4_1total_raw Q.B4_1TOTAL 3 month Spend - Films total qb4_1aother_raw Q.B4_1OTHER 3 month Spend - Films Other qb4_1ai_raw Q.B4_1Ai 3 month Spend - Films watched at the cinema qb4_1aii_raw Q.B4_1Aii 3 month Spend - Rented films on DVD, Bluray, or VHS qb4_1aiii_raw Q.B4_1Aiii 3 month Spend - Films purchased on DVD, Bluray, or VHS qb4_1aiv_raw Q.B4_1Aiv 3 month Spend - Online films purchased individually qb4_1av_raw Q.B4_1Av 3 month Spend - Online film subscriptions qb4_1avi_raw Q.B4_1Avi 3 month Spend - Films purchased individually through Pay TV service qb4_1avii_raw Q.B4_1Avii 3 month Spend - Films bought or rented on DVD, Bluray or VHS qb4_1aviii_raw Q.B4_1Aviii 3 month Spend - Films merchandise e.g. T-shirts, Mugs, Posters qb5_1total_raw Q.B5_1TOTAL 3 month Spend - TV programmes total qb5_1ai_raw Q.B5_1Ai 3 month Spend - TV programmes rented on DVD, Bluray, or VHS qb5_1aii_raw Q.B5_1Aii 3 month Spend - TV programmes purchased on DVD, Bluray, or VHS qb5_1aiii_raw Q.B5_1Aiii 3 month Spend - TV programmes downloaded or streamed using an internet connection qb5_1aiv_raw Q.B5_1Aiv 3 month Spend - TV programmes bought or rented on DVD, Blu-ray or VHS qb5_1av_raw Q.B5_1Av 3 month Spend - TV programmes merchandise e.g. T-shirts, Mugs, Posters qb6_1total_raw Q.B6_1TOTAL 3 month Spend - Books total qb6_1ai_raw Q.B6_1Ai 3 month Spend - Books - paper copies qb6_1aii_raw Q.B6_1Aii 3 month Spend - e-Books - digital copies downloaded qb6_1aiii_raw Q.B6_1Aiii 3 month Spend - Books merchandise e.g. T-shirts, Mugs, posters qb1_3total_raw Q.B1_3Total Number - Music total in the last 3 months qb2_3total_raw Q.B2_3Total Number - Video Games total in the last 3 months qb3_3total_raw Q.B3_3Total Number - Computer Software total in the last 3 months qb4_3total_raw Q.B4_3Total Number - Films total in the last 3 months qb5_3total_raw Q.B5_3Total Number - TV programmes total in the last 3 months qb6_3total_raw Q.B6_3Total Number - e-Books total in the last 3 months qb1_3a_raw Q.B1_3A Number - Music tracks downloaded in the last 3 months qb2_3a_raw Q.B2_3A Number - Video Games downloaded in the last 3 months qb3_3a_raw Q.B3_3A Number - Computer Software downloaded in the last 3 months qb4_3a_raw Q.B4_3A Number - Films downloaded in the last 3 months qb5_3a_raw Q.B5_3A Number - TV programmes downloaded in the last 3 months qb6_3a_raw Q.B6_3A Number - e-Books downloaded in the last 3 months qb1_3b_raw Q.B1_3B Number - Music tracks streamed/accessed in the last 3 months qb2_3b_raw Q.B2_3B Number - Video Games accessed in the last 3 months qb3_3b_raw Q.B3_3B Number - Computer Software accessed in the last 3 months qb4_3b_raw Q.B4_3B Number - Films streamed in the last 3 months qb5_3b_raw Q.B5_3B Number - TV programmes streamed in the last 3 months qb6_3b_raw Q.B6_3B Number - e-Books accessed in the last 3 months qb1_3ab_raw Q.B1_3A/B Number - Music tracks downloaded or streamed/accessed in the last 3 months qb2_3ab_raw Q.B2_3A/B Number - Video Games downloaded or /accessed in the last 3 months qb3_3ab_raw Q.B3_3A/B Number - Computer Software downloaded or accessed in the last 3 months qb4_3ab_raw Q.B4_3A/B Number - Films downloaded or streamed in the last 3 months qb5_3ab_raw Q.B5_3A/B Number - TV programmes downloaded or streamed in the last 3 months qb6_3ab_raw Q.B6_3A/B Number - e-Books downloaded or accessed in the last 3 months qb1_5a_raw Q.B1_5A Number - Music tracks downloaded/streamed in the last 3 months - Paid for qb2_5a_raw Q.B2_5A Number - Video Games downloaded/accessed in the last 3 months - Paid for qb3_5a_raw Q.B3_5A Number - Computer Software downloaded/accessed in the last 3 months - Paid for qb4_5a_raw Q.B4_5A Number - Films downloaded/streamed in the last 3 months - Paid for qb5_5a_raw Q.B5_5A Number - TV programmes downloaded/streamed in the last 3 months - Paid for qb6_5a_raw Q.B6_5A Number - e-Books downloaded/accessed in the last 3 months - Paid for qb1_5ai_raw Q.B1_5Ai Number - Music tracks downloaded/streamed for free in the last 3 months qb2_5ai_raw Q.B2_5Ai Number - Video Games downloaded/accessed for free in the last 3 months qb3_5ai_raw Q.B3_5Ai Number - Computer Software downloaded/accessed for free in the last 3 months qb4_5ai_raw Q.B4_5Ai Number - Films downloaded/streamed for free in the last 3 months qb5_5ai_raw Q.B5_5Ai Number - TV programmes downloaded/streamed for free in the last 3 months qb6_5ai_raw Q.B6_5Ai Number - e-Books downloaded/accessed for free in the last 3 months qb1_6_raw Q.B1_6 Number - Music tracks downloaded/streamed previously for free qb2_6_raw Q.B2_6 Number - Video Games downloaded/accessed previously for free qb3_6_raw Q.B3_6 Number - Computer Software downloaded/accessed previously for free qb4_6_raw Q.B4_6 Number - Films downloaded/streamed previously for free qb5_6_raw Q.B5_6 Number - TV programmes downloaded/streamed previously for free qb6_6_raw Q.B6_6 Number - e-Books downloaded/accessed previously for free qb1_5b_raw Q.B1_5B Number - downloaded/streamed music (last 3 months) already owned on disc or vinyl qb2_5b_raw Q.B2_5B Number - downloaded/accessed Video Games (last 3 months) already owned on disc or cartridge qb3_5b_raw Q.B3_5B Number - downloaded/accessed Computer Software (last 3 months) already owned on disc qb4_5b_raw Q.B4_5B Number - downloaded/streamed Films (last 3 months) already owned on DVD, Blu-Ray or VHS qb5_5b_raw Q.B5_5B Number - downloaded/streamed TV programmes (last 3 months) already owned on DVD, Blu-Ray or VHS qb6_5b_raw Q.B6_5B Number - downloaded/accessed e-Books (last 3 months) already owned on hardbacks and paperbacks qb4_5c_raw Q.B4_5C Number - downloaded/streamed Films (last 3 months) already seen at cinema or through TV service qb1_7_raw Q.B1_7 Number - free music tracks downloaded or streamed legally qb2_7_raw Q.B2_7 Number - free Video Games downloaded or accessed legally qb3_7_raw Q.B3_7 Number - free Computer Software downloaded or accessed legally qb4_7_raw Q.B4_7 Number - free Films downloaded or streamed legally qb5_7_raw Q.B5_7 Number - free TV programmes downloaded or streamed legally qb6_7_raw Q.B6_7 Number - free e-Books downloaded or accessed legally qb1_7b_raw Q.B1_7B Number - Paid music tracks downloaded or streamed legally in the last 3 months qb4_7b_raw Q.B4_7B Number - Paid Films downloaded or streamed legally in the last 3 months qb1_7_tot_raw Q.B1_7_T Number - Total music tracks downloaded or streamed online legally in the last 3 months (presuming paid as legal) qb1_7b_tot_raw Q.B1_7B_T Number - Total music tracks downloaded or streamed online legally in the last 3 months (including paid illegal) qb2_7_tot_raw Q.B2_7_T Number - Total Video Games downloaded or accessed legally in the last 3 months qb3_7_tot_raw Q.B3_7_T Number - Total Computer Software downloaded or accessed legally in the last 3 months qb4_7_tot_raw Q.B4_7_T Number - Total Films downloaded or streamed legally in the last 3 months (presuming paid as legal) qb4_7b_tot_raw Q.B4_7B_T Number - Total Films downloaded or streamed online legally in the last 3 months (including paid illegal) qb5_7_tot_raw Q.B5_7_T Number - Total TV programmes downloaded or streamed legally in the last 3 months qb6_7_tot_raw Q.B6_7_T Number - Total e-Books downloaded or accessed legally in the last 3 months qb1_3c1_raw Q.B1_3C1 Number - Music tracks owned in digital format (amongst sharers) qb1_3c2_raw Q.B1_3C2 Number - Music tracks shared in the last 3 months qb1_3c1c2_raw Q.B1_3C1/2 Number - Owned v Shared qb2_3c_raw Q.B2_3C Number - Video Games shared in the last 3 months qb3_3c_raw Q.B3_3C Number - Computer Software shared in the last 3 months qb4_3c_raw Q.B4_3C Number - Films shared in the last 3 months qb5_3c_raw Q.B5_3C Number - TV programmes shared in the last 3 months qb6_3c_raw Q.B6_3C Number - e-Books shared in the last 3 months qb1_3d_raw Q.B1_3D Number - Music tracks bought on CD or vinyl in the last 3 months qb2_3d_raw Q.B2_3D Number - Video Games bought on disc or cartridge in the last 3 months qb3_3d_raw Q.B3_3D Number - Computer Software bought on disc or cartridge in the last 3 months qb4_3d_raw Q.B4_3D Number - Films bought on DVD, Bluray or VHS in the last 3 months qb5_3d_raw Q.B5_3D Number - TV programmes bought on disc or cartridge in the last 3 months qb6_3d_raw Q.B6_3D Number - e-Books bought on hardback or paperback in the last 3 months qb1_3c_pro_raw Q.B1_3C1/2 Proportion - music library shared in the last 3 months qb1_5a_pro_raw Q.B1_5A Proportion of downloaded/streamed music (last 3 months) paid for qb1_5ai_pro_raw Q.B1_5Ai Proportion - Music tracks downloaded/streamed for free in the last 3 months qb1_6_pro_raw Q.B1_6 Proportion of paid music tracks previously downloaded or streamed for free qb1_5b_pro_raw Q.B1_5B Proportion of downloaded/streamed music (last 3 months) already owned on disc or vinyl qb1_7b_pro_paid_raw Q.B1_7B Proportion - Paid music tracks downloaded or streamed legally in the last 3 months qb1_7b_pro_all_raw Q.B1_7B Proportion - Total music tracks downloaded or streamed legally in the last 3 months (Including paid illegal) qb1_7_pro_free_raw Q.B1_7 Proportion of free music tracks downloaded or streamed legally qb1_7_pro_all_raw Q.B1_7 Proportion of all music tracks downloaded or streamed legally qb2_5a_pro_raw Q.B2_5A Proportion - downloaded/accessed Video Games (last 3 months) paid for qb2_5ai_pro_raw Q.B2_5Ai Proportion - Video Games downloaded/accessed for free in the last 3 months qb2_6_pro_raw Q.B2_6 Proportion of paid Video Games previously downloaded or accessed for free qb2_5b_pro_raw Q.B2_5B Proportion of downloaded/accessed Video Games (last 3 months) already owned on disc or cartridge qb2_7_pro_free_raw Q.B2_7 Proportion of free Video Games downloaded or streamed legally qb2_7_pro_all_raw Q.B2_7 Proportion of all Video Games downloaded or streamed legally qb3_5a_pro_raw Q.B3_5A Proportion -of downloaded/accessed Computer Software (last 3 months) paid for qb3_5ai_pro_raw Q.B3_5Ai Proportion - Computer software downloaded/accessed for free in the last 3 months qb3_6_pro_raw Q.B3_6 Proportion of paid Computer Software previously downloaded or accessed for free qb3_5b_pro_raw Q.B3_5B Proportion of downloaded/accessed Computer Software (last 3 months) already owned on disc qb3_7_pro_free_raw Q.B3_7 Proportion of free Computer Software downloaded or streamed legally qb3_7_pro_all_raw Q.B3_7 Proportion of all Computer Software downloaded or streamed legally qb4_5a_pro_raw Q.B4_5A Proportion of downloaded/streamed Films (last 3 months) paid for qb4_5ai_pro_raw Q.B4_5Ai Proportion - Films downloaded/streamed for free in the last 3 months qb4_6_pro_raw Q.B4_6 Proportion of paid Films previously downloaded or streamed for free qb4_5b_pro_raw Q.B4_5B Proportion of downloaded/streamed Films (last 3 months) already owned on DVD, Blu-Ray or VHS qb4_5c_pro_raw Q.B4_5C Proportion of downloaded/streamed Films (last 3 months) already seen at cinema or through TV service qb4_7b_pro_free_raw Q.B4_7B Proportion - Paid films downloaded or streamed legally in the last 3 months qb4_7b_pro_all_raw Q.B4_7B Proportion - Total films downloaded or streamed legally in the last 3 months (Including paid illegal) qb4_7_pro_free_raw Q.B4_7 Proportion of free films downloaded or streamed legally qb4_7_pro_all_raw Q.B4_7 Proportion of all films downloaded or streamed legally qb5_5a_pro_raw Q.B5_5A Proportion - downloaded/streamed TV programmes (last 3 months) paid for qb5_5ai_pro_raw Q.B5_5Ai Proportion - Films downloaded/streamed for free in the last 3 months qb5_6_pro_raw Q.B5_6 Proportion of paid TV programmes previously downloaded or streamed for free qb5_5b_pro_raw Q.B5_5B Proportion of downloaded/streamed TV programmes (last 3 months) already owned on DVD, Blu-Ray or VHS qb5_7_pro_free_raw Q.B5_7 Proportion of free TV programmes downloaded or streamed legally qb5_7_pro_all_raw Q.B5_7 Proportion of all TV programmes downloaded or streamed legally qb6_5a_pro_raw Q.B6_5A Proportion of downloaded/accessed e-Books (last 3 months) paid for qb6_5ai_pro_raw Q.B6_5Ai Proportion - Books downloaded/accessed for free in the last 3 months qb6_6_pro_raw Q.B6_6 Proportion of paid e-Books previously downloaded or accessed for free qb6_5b_pro_raw Q.B6_5B Proportion of downloaded/accessed e-Books (last 3 months) already owned on hardbacks and paperbacks qb6_7_pro_free_raw Q.B6_7 Proportion of free e-Books downloaded or accessed legally qb6_7_pro_all_raw Q.B6_7 Proportion of all e-Books downloaded or accessed legally qbx_1_total_raw QBx_1TOTAL (Combined files of interest) 3 month Spend - Total qbx_1_physical_raw QBx_1PHYS(Combined files of interest) 3 month Spend - Physical copies qbx_1_onl_pur_raw QBx_1ON(Combined files of interest) 3 month Spend - Individual online purchases (downloads/streams) qbx_1_onl_sub_raw QBx_1ONSUB (Combined files of interest) 3 month Spend - Online purchases + subscriptions qbx_1_other_raw QBx_1OTHER(Combined files of interest) 3 month Spend - Other qbx_3sum2_raw Q.Bx_3SUM2 (Combined files of interest) Number - Summary of Total qbx_3a_raw Q.Bx_3A (Combined files of interest) Number - content types of interest downloaded in the last 3 months qbx_3b_raw Q.Bx_3B Number - content types of interest streamed/accessed in the last 3 months qbx_3ab_raw Q.Bx_3A/B (Combined files of interest) Number - content types of interest downloaded or streamed/accessed in the last 3 months qbx_5a_numb_raw Q.Bx_5A (Combined files of interest) Number - content types of interest downloaded/streamed in the last 3 months - Paid for qbx_5ai_numb_raw Q.Bx_5Ai (Combined files of interest) Number - content types of interest downloaded or streamed/accessed for free in the last 3 months qb1_6_5a_pro_raw Q.Bx_5A (Combined files of interest) Proportion of downloaded/streamed content types of interest (last 3 months) paid for qb1_6_5ai_pro_raw Q.Bx_5Ai (Combined files of interest) Proportion - content types of interest downloaded/streamed/accessed for free in the last 3 months qbx_6 Q.Bx_6 (Combined files of interest) Number - paid content types of interest previously downloaded or streamed/accessed for free qb1_6_6_pro_raw Q.Bx_6 (Combined files of interest) Proportion of content types of interest previously downloaded or streamed for free qbx_5b_numb_raw Q.Bx_5B (Combined files of interest) Number - downloaded/accessed content types of interest (last 3 months) already owned in physical format qb1_6_5b_pro_raw Q.Bx_5B (Combined files of interest) Proportion of downloaded/streamed content types of interest (last 3 months) already owned on disc or vinyl qbx_7b_numb_raw Q.Bx_7B (Combined files of interest) Number - paid content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7b_pro_raw Q.Bx_7B (Combined files of interest) Proportion - paid content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7_numb_raw Q.Bx_7 (Combined files of interest) Number - free content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7_pro_raw Q.Bx_7 (Combined files of interest) Proportion - free content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7a_b_numb_raw Q.Bx_7 (Combined files of interest) Number - total content types of interest downloaded or streamed/accessed legally in the last 3 months (including paid illegal) qbx_7_b_pro_raw Q.Bx_7 (Combined files of interest) Proportion - total content types of interest downloaded or accessed legally in the last 3 months (including paid illegal) qbx_7a_a_numb_raw Q.Bx_7 (Combined files of interest) Number - total content types of interest downloaded or streamed/accessed legally in the last 3 months (presuming paid as legal) qbx_7_a_pro_raw Q.Bx_7 (Combined files of interest) Proportion - total content types of interest downloaded or accessed legally in the last 3 months (presuming paid as legal) qbx_3c_raw Q.Bx_3C (Combined files of interest) Number - content types of interest shared in the last 3 months qbx_3d_raw Q.Bx_3D (Combined files of interest) Number - content types of interest bought in physical format in the last 3 months qb1_7i_raw Q.B1_7i Number - Total music tracks downloaded or streamed online illegally in the last 3 months (including paid illegal) qb2_7i_raw Q.B2_7i Number - Total Video games downloaded or accessed online illegally in the last 3 months (including paid illegal) qb3_7i_raw Q.B3_7i Number - Total Software downloaded or accessed online illegally in the last 3 months (including paid illegal) qb4_7i_raw Q.B4_7i Number - Total films downloaded or streamed online illegally in the last 3 months (including paid illegal) qb5_7i_raw Q.B5_7i Number - Total TV programmes downloaded or streamed online illegally in the last 3 months (including paid illegal) qb6_7i_raw Q.B6_7i Number - Total books downloaded or accessed online illegally in the last 3 months (including paid illegal) qbx_7i_raw Q.Bx_7i Number - Combined files of interest downloaded or streamed/accessed online illegally in the last 3 months (including paid illegal) numbhh Number in household weight0 Weight q11b3 Q.11B And what aspects of an online service which allows you to either download, or stream\\access content through the internet would make you trust it was legal? \. -- -- TOC entry 2161 (class 0 OID 16458) -- Dependencies: 182 -- Data for Name: questions; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY questions (question_code, question) FROM stdin; qa_01 Access to the Internet at home on a computerlaptop qa_02 Access to the Internet at work on a computerlaptop qa_03 Access to the Internet at home on a games console qa_04 Internet at home through your TV screen via a computer qa_05 Internet at home directly through your TV set i.e. SmartConnected TV) qa_06 Access to the Internet via a mobile phone qa_07 Access to the internet on a tablet computer e.g. iPad qa_08 Access to the Internet on a Palmtop or Personal Digital Assistant (PDA)Pocket PC qa_09 Access to the Internet at schoolcollege university on a computer qa_10 Internet access from a library on a computer qa_11 Internet access in a cafe\bar on a computer qa_12 Internet access at a friend's or relative's house on a computer qa_13 Other Internet access qa_14 An e-mail address at home qa_15 An e-mail address at work qa_16 Other e-mail address qa_17 None qa_18 Don't know @all all qb_01 Digital Satellite TV through Sky for a monthly subscription (i.e. satellite dish) qb_02 Free-Sat TV through any satellite dish WITHOUT a monthly subscription qb_03 Cable through Virgin Media (previously ntlTelewest) qb_04 Freeview TV through TV aerial and set-top box without a monthly subscription qb_05 Top-Up TV through TV aerial and set-top box for a monthly subscription qb_06 TV which has Freeview channels built in (IDTV using TV aerial; without a separate set-top box) qb_07 TV from TiscaliHomechoice qb_08 TV from BT Vision qb_09 TV from Talk Talk qb_10 TV through a normal aerial but receiving the main 4 or 5 channels only qb_11 Other qb_12 NO TV qc_01 A Smartphone e.g. iPhone; Blackberry; HTC; etc qc_02 A mobile phone (not a Smartphone) with internet access qc_03 A mobile phone without internet access qc_04 A computer to either laptop; desktop; or netbook qc_05 A tablet PC e.g. iPad; Samsung Galaxy qc_06 An e-book reader e.g. Kindle; Kobo qc_07 A games console e.g. Xbox 360; PS3; Nintendo Wii qc_08 A mobile gaming device e.g. Sony PSPVita; Nintendo DS qc_09 Ipod (Touch)/MP3 player qc_10 Mobile phone to no detail of internet access qc_11 Other mobile device qc_12 None of these qc_13 Don't know qd Q.D Frequency of internet use q1a01 Yes to music tracks or albums (excluding online radio stations) q1a02 Yes to music videos q1a03 Yes to video games (excluding patches and upgrades) q1a04 Yes to computer software (excluding mobile phone apps; and patchesupgrades to software already owned) q1a05 Yes to films (full length) q1a06 Yes to TV programmes q1a07 Yes to Short video clips q1a08 Yes to e-books q1a09 Yes to other type of file q1a10 No q1a11 Don't know q1b01 Yes to music tracks or albums (excluding online radio stations) q1b02 Yes to music videos q1b03 Yes to video games (excluding patches and upgrades) q1b04 Yes to computer software (excluding mobile phone apps; and patchesupgrades to software already owned) q1b05 Yes to films (full length) q1b06 Yes to TV programmes q1b07 Yes to Short video clips q1b08 Yes to e-books q1b09 Yes to other type of file q1b10 No q1b11 Don't know q1c01 Yes to music tracks or albums (excluding online radio stations) q1c02 Yes to music videos q1c03 Yes to video games (excluding patches and upgrades) q1c04 Yes to computer software (excluding mobile phone apps; and patchesupgrades to software already owned) q1c05 Yes to films (full length) q1c06 Yes to TV programmes q1c07 Yes to Short video clips q1c08 Yes to e-books q1c09 Yes to other type of file q1c10 No q1c11 Don't know q2a01 Yes to music tracks or albums (excluding online radio stations) q2a02 Yes to music videos q2a03 Yes to video games (excluding patches and upgrades) q2a04 Yes to computer software (excluding mobile phone apps; and patchesupgrades to software already owned) q2a05 Yes to films (full length) q2a06 Yes to TV programmes q2a07 Yes to Short video clips q2a08 Yes to e-books q2a09 Yes to other type of file q2a10 None q2a11 Don't know q2b01 Yes to music tracks or albums (excluding online radio stations) q2b02 Yes to music videos q2b03 Yes to video games (excluding patches and upgrades) q2b04 Yes to computer software (excluding mobile phone apps; and patchesupgrades to software already owned) q2b05 Yes to films (full length) q2b06 Yes to TV programmes q2b07 Yes to Short video clips q2b08 Yes to e-books q2b09 Yes to other type of file q2b10 None q2b11 Don't know q2c01 Yes to music tracks or albums (excluding online radio stations) q2c02 Yes to music videos q2c03 Yes to video games (excluding patches and upgrades) q2c04 Yes to computer software (excluding mobile phone apps; and patchesupgrades to software already owned) q2c05 Yes to films (full length) q2c06 Yes to TV programmes q2c07 Yes to Short video clips q2c08 Yes to e-books q2c09 Yes to other type of file q2c10 None q2c11 Don't know q3a1 In home via fixed broadband internet access; through a telephone line e.g. BT; Sky; Talk Talk q3a2 In home via fixed broadband internet access; through cable Virgin Media q3a3 In home via Wi-Fi (using a router or hub) q3a4 In home via a mobile network e.g. using 3GG on a smartphone\tabletdongle q3a5 Out of home via fixed broadband internet access (e.g. in a cafe; library or other public place) q3a6 Out of home via a Wi-Fi (wireless) network (e.g. in a cafe; library or other public place) q3a7 Out of home via a mobile network e.g. using 3GG in a public place (e.g. cafe of library) q3a8 None q3b1 In home via fixed broadband internet access; through a telephone line e.g. BT; Sky; Talk Talk q3b2 In home via fixed broadband internet access; through cable Virgin Media q3b3 In home via Wi-Fi (using a router or hub) q3b4 In home via a mobile network e.g. using 3GG on a smartphone\tabletdongle q3b5 Out of home via fixed broadband internet access (e.g. in a cafe; library or other public place) q3b6 Out of home via a Wi-Fi (wireless) network (e.g. in a cafe; library or other public place) q3b7 Out of home via a mobile network e.g. using 3GG in a public place (e.g. cafe of library) q3b8 None q3c1 In home via fixed broadband internet access; through a telephone line e.g. BT; Sky; Talk Talk q3c2 In home via fixed broadband internet access; through cable Virgin Media q3c3 In home via Wi-Fi (using a router or hub) q3c4 In home via a mobile network e.g. using 3GG on a smartphone\tabletdongle q3c5 Out of home via fixed broadband internet access (e.g. in a cafe; library or other public place) q3c6 Out of home via a Wi-Fi (wireless) network (e.g. in a cafe; library or other public place) q3c7 Out of home via a mobile network e.g. using 3GG in a public place (e.g. cafe of library) q3c8 None qb1_1total Q.B1_1TOTAL 3 month Spen to Music total qb1_1aother Q.B1_1OTHER 3 month Spen to Music other qb1_1ai Q.B1_1Ai 3 month Spen to Music concerts or gigs qb1_1aii Q.B1_1Aii 3 month Spen to Music merchandise qb1_1aiii Q.B1_1Aiii 3 month Spen to Music tracks or albums bought on CD or vinyl qb1_1aiva Q.B1_1Aiv 3 month Spen to Music tracks or albums downloaded or streamed/accessed online qb1_1ava Q.B1_1Av 3 month Spen to Music subscriptions qb1_2a Q.B1_2A Frequency of downloading to Music qb1_2b Q.B1_2B Frequency of streaming to Music qb1_2c Q.B1_2C Frequency of sharing to Music qb1_3total Q.B1_3Total Number to Music total in the last 3 months qb1_3a Q.B1_3A Number to Music tracks downloaded in the last 3 months qb1_3b Q.B1_3B Number to Music tracks streamed in the last 3 months qb1_3ab Q.B1_3A/B Number to Music tracks downloaded or streamed in the last 3 months qb1_5a Q.B1_5A Number to Music tracks downloaded/streamed in the last 3 months to Paid for qb1_5a_pro Q.B1_5A Proportion to Music tracks downloaded/streamed in the last 3 months paid for qb1_5ai Q.B1_5Ai Number to Music tracks downloaded/streamed for free in the last 3 months qb1_5ai_pro Q.B1_5Ai Proportion to Music tracks downloaded/streamed for free in the last 3 months qb1_6 Q.B1_6 Number to paid music tracks previously downloaded or streamed for free in the last 3 months qb1_6_pro Q.B1_6 Proportion to paid music tracks previously downloaded or streamed for free qb1_5b Q.B1_5B Number to Music tracks downloaded/streamed in the last 3 months already owned on disc or vinyl qb1_5b_pro Q.B1_5B Proportion to Music tracks downloaded/streamed in the last 3 months already owned on disc or vinyl qb1_7b Q.B1_7B Number to Paid music tracks downloaded or streamed legally in the last 3 months qb1_7_pro_b1 Q.B1_7B Proportion to Paid music tracks downloaded or streamed legally in the last 3 months qb1_7 Q.B1_7 Number to free music tracks downloaded or streamed legally in the last 3 months qb1_7_pro_a1 Q.B1_7 Proportion to free music tracks downloaded or streamed legally in the last 3 months qb1_7b_t Q.B1_7B_T Number to Total music tracks downloaded or streamed music online legally in the last 3 months (Including paid illegal) qb1_7_pro_b2 Q.B1_7B Proportion to Total music tracks downloaded or streamed legally in the last 3 months (Including paid illegal) qb1_7_t Q.B1_7_T Number to Total music tracks downloaded or streamed music online legally in the last 3 months (presuming paid as legal) qb1_7_pro_a2 Q.B1_7 Proportion to Total music tracks downloaded or streamed legally (presuming paid as legal) qb1_3c1 Q.B1_3C1 Number to Music tracks owned in digital format (amongst sharers) qb1_3c2 Q.B1_3C2 Number to Music tracks shared in the last 3 months qb1_3c12 Q.B1_3C1/2 Number to Owned v Shared qb1_3c_pro Q.B1_3C1/2 Proportion to music library shared in the last 3 months qb1_3d Q.B1_3D Number to Music tracks bought on CD or vinyl in the last 3 months qb1_8a_01flt_a Q.B1_8A_01 Price Sensitivity to Music Download service to 39p qb1_8a_02flt_a Q.B1_8A_02 Price Sensitivity to Music Download service to 59p qb1_8a_03flt_a Q.B1_8A_03 Price Sensitivity to Music Download service to 79p qb1_8a_04flt_a Q.B1_8A_04 Price Sensitivity to Music Download service to 99p qb1_8a_05flt_a Q.B1_8A_05 Price Sensitivity to Music Download service to £1.19 qb1_8a_01a Q.B1_8A_01 Price Sensitivity to Music Download service to 39p qb1_8a_02a Q.B1_8A_02 Price Sensitivity to Music Download service to 59p qb1_8a_03a Q.B1_8A_03 Price Sensitivity to Music Download service to 79p qb1_8a_04a Q.B1_8A_04 Price Sensitivity to Music Download service to 99p qb1_8a_05a Q.B1_8A_05 Price Sensitivity to Music Download service to £1.19 qb1_8a_01e Q.B1_8A_01 Price Sensitivity to Music Download service to 39p qb1_8a_02e Q.B1_8A_02 Price Sensitivity to Music Download service to 59p qb1_8a_03e Q.B1_8A_03 Price Sensitivity to Music Download service to 79p q10a03 It's free qb1_8a_04e Q.B1_8A_04 Price Sensitivity to Music Download service to 99p qb1_8a_05e Q.B1_8A_05 Price Sensitivity to Music Download service to £1.19 qb1_8a_01f Q.B1_8A_01 Price Sensitivity to Music Download service to 39p qb1_8a_02f Q.B1_8A_02 Price Sensitivity to Music Download service to 59p qb1_8a_03f Q.B1_8A_03 Price Sensitivity to Music Download service to 79p qb1_8a_04f Q.B1_8A_04 Price Sensitivity to Music Download service to 99p qb1_8a_05f Q.B1_8A_05 Price Sensitivity to Music Download service to £1.19 qb1_8b_01flt_a Q.B1_8B_01 Price Sensitivity to Music Subscription service to £3 qb1_8b_02flt_a Q.B1_8B_02 Price Sensitivity to Music Subscription service to £5 qb1_8b_03flt_a Q.B1_8B_03 Price Sensitivity to Music Subscription service to £7.50 qb1_8b_04flt_a Q.B1_8B_04 Price Sensitivity to Music Subscription service to £10 qb1_8b_05flt_a Q.B1_8B_05 Price Sensitivity to Music Subscription service to £12.50 qb1_8b_01a Q.B1_8B_01 Price Sensitivity to Music Subscription service to £3 qb1_8b_02a Q.B1_8B_02 Price Sensitivity to Music Subscription service to £5 qb1_8b_03a Q.B1_8B_03 Price Sensitivity to Music Subscription service to £7.50 qb1_8b_04a Q.B1_8B_04 Price Sensitivity to Music Subscription service to £10 qb1_8b_05a Q.B1_8B_05 Price Sensitivity to Music Subscription service to £12.50 qb1_8b_01e Q.B1_8B_01 Price Sensitivity to Music Subscription service to £3 qb1_8b_02e Q.B1_8B_02 Price Sensitivity to Music Subscription service to £5 qb1_8b_03e Q.B1_8B_03 Price Sensitivity to Music Subscription service to £7.50 qb1_8b_04e Q.B1_8B_04 Price Sensitivity to Music Subscription service to £10 qb1_8b_05e Q.B1_8B_05 Price Sensitivity to Music Subscription service to £12.50 qb1_8b_01f Q.B1_8B_01 Price Sensitivity to Music Subscription service to £3 qb1_8b_02f Q.B1_8B_02 Price Sensitivity to Music Subscription service to £5 qb1_8b_03f Q.B1_8B_03 Price Sensitivity to Music Subscription service to £7.50 qb1_8b_04f Q.B1_8B_04 Price Sensitivity to Music Subscription service to £10 qb1_8b_05f Q.B1_8B_05 Price Sensitivity to Music Subscription service to £12.50 qb2_1total Q.B2_1TOTAL 3 month Spen to Video Games total qb2_1ai Q.B2_1Ai 3 month Spen to Video Games bought or rented on Disc or Cartridge qb2_1aiii Q.B2_1Aiii 3 month Spen to Video Games merchandise e.g. Tshirts; Mugs; Posters qb2_1aiia Q.B2_1Aii 3 month Spen to Video Games downloaded or accessed qb2_2a Q.B2_2A Frequency of downloading to Video Games qb2_2b Q.B2_2B Frequency of accessing to Video Games qb2_2c Q.B2_2C Frequency of sharing to Video Games qb2_3total Q.B2_3Total Number to Video Games total in the last 3 months qb2_3a Q.B2_3A Number to Video Games downloaded in the last 3 months qb2_3b Q.B2_3B Number to Video Games accessed in the last 3 months qb2_3ab Q.B2_3A/B Number to Video Games downloaded or accessed in the last 3 months qb2_5a Q.B2_5A Number to Video Games downloaded/accessed in the last 3 months to Paid for qb2_5a_pro Q.B2_5A Proportion to Video Games downloaded/accessed in the last 3 months paid for qb2_5ai Q.B2_5Ai Number to Video Games downloaded/accessed for free in the last 3 months qb2_5ai_pro Q.B2_5Ai Proportion to Video Games downloaded/accessed for free in the last 3 months qb2_6 Q.B2_6 Number to paid Video Games previously downloaded or accessed for free in the last 3 months qb2_6_pro Q.B2_6 Proportion to paid Video Games previously downloaded or accessed for free qb2_5b Q.B2_5B Number to Video Games downloaded/accessed in the last 3 months already owned on disc or cartridge qb2_5b_pro Q.B2_5B Proportion to Video games downloaded/accessed in the last 3 months already owned on disc or cartridge qb2_7 Q.B2_7 Number to free Video Games downloaded or accessed legally in the last 3 months qb2_7_t Q.B2_7_T Number to Total Video Games downloaded or accessed video games legally in the last 3 months qb2_7_pro_a Q.B2_7 Proportion to free Video Games downloaded or accessed legally in the last 3 months qb2_7_pro_b Q.B2_7 Proportion to Total Video Games downloaded or accessed legally in the last 3 months qb2_3c Q.B2_3C Number to Video Games shared in the last 3 months qb2_3d Q.B2_3D Number to Video Games bought or rented on disc or cartridge in the last 3 months qb3_1total Q.B3_1TOTAL 3 month Spen to Computer Software total qb3_1ai Q.B3_1Ai 3 month Spen to Computer Software on disc or Cartridge qb3_1aiia Q.B3_1Aii 3 month Spen to Computer Software downloaded or accessed qb3_2a Q.B3_2A Frequency of downloading to Computer Software qb3_2b Q.B3_2B Frequency of accessing to Computer Software qb3_2c Q.B3_2C Frequency of sharing to Computer Software qb3_3total Q.B3_3Total Number to Computer Software total in the last 3 months qb3_3a Q.B3_3A Number to Computer Software downloaded in the last 3 months qb3_3b Q.B3_3B Number to Computer Software accessed in the last 3 months qb3_3ab Q.B3_3A/B Number to Computer Software downloaded or accessed in the last 3 months qb3_5a Q.B3_5A Number to Computer Software downloaded/accessed in the last 3 months to Paid for qb3_5a_pro Q.B3_5A Proportion to Computer software downloaded/accessed in the last 3 months paid for qb3_5ai Q.B3_5Ai Number to Computer Software downloaded/accessed for free in the last 3 months qb3_5ai_pro Q.B3_5Ai Proportion to Computer software downloaded/accessed for free in the last 3 months qb3_6 Q.B3_6 Number to paid Computer Software previously downloaded or accessed for free in the last 3 months qb3_6_pro Q.B3_6 Proportion to paid Computer software previously downloaded or accessed for free qb3_5b Q.B3_5B Number to Computer Software downloaded/accessed in the last 3 months already owned on disc qb3_5b_pro Q.B3_5B Proportion to Computer software downloaded/accessed in the last 3 months already owned on disc q906 I should be able to share my content with whomever I choose qb3_7 Q.B3_7 Number to free Computer Software downloaded or accessed legally in the last 3 months qb3_7_t Q.B3_7_T Number to Total Computer Software downloaded or accessed computer software legally in the last 3 months qb3_7_pro_a Q.B3_7 Proportion to free Computer Software downloaded or accessed legally in the last 3 months qb3_7_pro_b Q.B3_7 Proportion to Total Computer Software downloaded or accessed legally in the last 3 months qb3_3c Q.B3_3C Number to Computer Software shared in the last 3 months qb3_3d Q.B3_3D Number to Computer Software bought on disc or cartridge in the last 3 months qb4_1total Q.B4_1TOTAL 3 month Spen to Films total qb4_1other Q.B4_1OTHER 3 month Spen to Films other qb4_1ai Q.B4_1Ai 3 month Spen to Films watched at the cinema qb4_1aii Q.B4_1Aii 3 month Spen to Rented films on DVD; Bluray; or VHS qb4_1aiii Q.B4_1Aiii 3 month Spen to Films purchased on DVD; Bluray; or VHS qb4_1avii Q.B4_1Avii 3 month Spen to Films bought or rented on DVD; Bluray or VHS qb4_1aviii Q.B4_1Aviii 3 month Spen to Films merchandise e.g. T-shirts; Mugs; Posters qb4_1aiv Q.B4_1Aiv 3 month Spen to Online (full length) films bought and streamed/accessed or downloaded individually qb4_1avi Q.B4_1Avi 3 month Spen to Films purchased individually through Pay TV service via Pay-per-view qb4_1av Q.B4_1Av 3 month Spen to Online film subscriptions qb4_2a Q.B4_2A Frequency of downloading to Films qb4_2b Q.B4_2B Frequency of streaming to Films qb4_2c Q.B4_2C Frequency of sharing to Films qb4_3total Q.B4_3Total Number to Films total in the last 3 months qb4_3a Q.B4_3A Number to Films downloaded in the last 3 months qb4_3b Q.B4_3B Number to Films streamed in the last 3 months qb4_3ab Q.B4_3A/B Number to Films downloaded or streamed in the last 3 months qb4_5a Q.B4_5A Number to Films downloaded/streamed in the last 3 months to Paid for qb4_5a_pro Q.B4_5A Proportion to Films downloaded/streamed in the last 3 months paid for qb4_5ai Q.B4_5Ai Number to Films downloaded/streamed for free in the last 3 months qb4_5ai_pro Q.B4_5Ai Proportion to Films downloaded/streamed for free in the last 3 months qb4_6 Q.B4_6 Number to paid Films previously downloaded or streamed for free in the last 3 months qb4_6_pro Q.B4_6 Proportion to paid Films previously downloaded or streamed for free qb4_5b Q.B4_5B Number to Films downloaded/streamed in the last 3 months already owned on DVD; Blu-Ray or VHS qb4_5b_pro Q.B4_5B Proportion to Films downloaded/streamed in the last 3 months already owned on DVD; Blu-Ray or VHS qb4_5c Q.B4_5C Number to Films downloaded/streamed in the last 3 months already seen at cinema or through TV service qb4_5c_pro Q.B4_5C Proportion to Films downloaded/streamed in the last 3 months already seen at cinema or through TV service qb4_7b Q.B4_7B Number to Paid Films downloaded or streamed legally in the last 3 months qb4_7_pro_b1 Q.B4_7B Proportion to Paid films downloaded or streamed legally in the last 3 months qb4_7 Q.B4_7 Number to free Films downloaded or streamed legally in the last 3 months qb4_7_pro_a1 Q.B4_7 Proportion to free Films downloaded or streamed legally in the last 3 months qb4_7b_t Q.B4_7B_T Number to Total Films downloaded or streamed films legally in the last 3 months (Including paid illegal) qb4_7_pro_b2 Q.B4_7B Proportion to Total films downloaded or streamed legally in the last 3 months (Including paid illegal) qb4_7_t Q.B4_7_T Number to Total Films downloaded or streamed films in the last 3 months (presuming paid as legal) qb4_7_pro_a2 Q.B4_7 Proportion to Total Films downloaded or streamed legally in the last 3 months (presuming paid as legal) qb4_3c Q.B4_3C Number to Films shared in the last 3 months qb4_3d Q.B4_3D Number to Films bought or rented on DVD; Bluray or VHS in the last 3 months qb4_8a_01flt_a Q.B4_8A_01 Price Sensitivity to Films Download service to £3 qb4_8a_02flt_a Q.B4_8A_02 Price Sensitivity to Films Download service to £5 qb4_8a_03flt_a Q.B4_8A_03 Price Sensitivity to Films Download service to £7.50 qb4_8a_04flt_a Q.B4_8A_04 Price Sensitivity to Films Download service to £10 qb4_8a_05flt_a Q.B4_8A_05 Price Sensitivity to Films Download service to £12.50 qb4_8a_01a Q.B4_8A_01 Price Sensitivity to Films Download service to £3 qb4_8a_02a Q.B4_8A_02 Price Sensitivity to Films Download service to £5 qb4_8a_03a Q.B4_8A_03 Price Sensitivity to Films Download service to £7.50 qb4_8a_04a Q.B4_8A_04 Price Sensitivity to Films Download service to £10 qb4_8a_05a Q.B4_8A_05 Price Sensitivity to Films Download service to £12.50 qb4_8a_01e Q.B4_8A_01 Price Sensitivity to Films Download service to £3 qb4_8a_02e Q.B4_8A_02 Price Sensitivity to Films Download service to £5 qb4_8a_03e Q.B4_8A_03 Price Sensitivity to Films Download service to £7.50 qb4_8a_04e Q.B4_8A_04 Price Sensitivity to Films Download service to £10 qb4_8a_05e Q.B4_8A_05 Price Sensitivity to Films Download service to £12.50 qb4_8a_01f Q.B4_8A_01 Price Sensitivity to Films Download service to £3 qb4_8a_02f Q.B4_8A_02 Price Sensitivity to Films Download service to £5 qb4_8a_03f Q.B4_8A_03 Price Sensitivity to Films Download service to £7.50 qb4_8a_04f Q.B4_8A_04 Price Sensitivity to Films Download service to £10 qb4_8a_05f Q.B4_8A_05 Price Sensitivity to Films Download service to £12.50 qb4_8b_01flt_a Q.B4_8B_01 Price Sensitivity to Films Subscription service to £4 qb4_8b_02flt_a Q.B4_8B_02 Price Sensitivity to Films Subscription service to £6 qb4_8b_03flt_a Q.B4_8B_03 Price Sensitivity to Films Subscription service to £8 qb4_8b_04flt_a Q.B4_8B_04 Price Sensitivity to Films Subscription service to £10 qb4_8b_05flt_a Q.B4_8B_05 Price Sensitivity to Films Subscription service to £12 qb4_8b_01a Q.B4_8B_01 Price Sensitivity to Films Subscription service to £4 qb4_8b_02a Q.B4_8B_02 Price Sensitivity to Films Subscription service to £6 qb4_8b_03a Q.B4_8B_03 Price Sensitivity to Films Subscription service to £8 qb4_8b_04a Q.B4_8B_04 Price Sensitivity to Films Subscription service to £10 qb4_8b_05a Q.B4_8B_05 Price Sensitivity to Films Subscription service to £12 qb4_8b_01e Q.B4_8B_01 Price Sensitivity to Films Subscription service to £4 qb4_8b_02e Q.B4_8B_02 Price Sensitivity to Films Subscription service to £6 q311 ITV Player q312 Last FM qb4_8b_03e Q.B4_8B_03 Price Sensitivity to Films Subscription service to £8 qb4_8b_04e Q.B4_8B_04 Price Sensitivity to Films Subscription service to £10 qb4_8b_05e Q.B4_8B_05 Price Sensitivity to Films Subscription service to £12 qb4_8b_01f Q.B4_8B_01 Price Sensitivity to Films Subscription service to £4 qb4_8b_02f Q.B4_8B_02 Price Sensitivity to Films Subscription service to £6 qb4_8b_03f Q.B4_8B_03 Price Sensitivity to Films Subscription service to £8 qb4_8b_04f Q.B4_8B_04 Price Sensitivity to Films Subscription service to £10 qb4_8b_05f Q.B4_8B_05 Price Sensitivity to Films Subscription service to £12 qb5_1total Q.B5_1TOTAL 3 month Spen to TV programmes total qb5_1ai Q.B5_1Ai 3 month Spen to TV programmes rented on DVD; Bluray; or VHS qb5_1aii Q.B5_1Aii 3 month Spen to TV programmes purchased on DVD; Bluray; or VHS qb5_1aiv Q.B5_1Aiv 3 month Spen to TV programmes bought or rented on DVD; Blu-ray or VHS qb5_1av Q.B5_1Av 3 month Spen to TV programmes merchandise e.g. T-shirts; Mugs; Posters qb5_1aiii Q.B5_1Aiii 3 month Spen to TV programmes downloaded or streamed using an internet connection qb5_2a Q.B5_2A Frequency of downloading to TV programmes qb5_2b Q.B5_2B Frequency of streaming to TV programmes qb5_2c Q.B5_2C Frequency of sharing to TV programmes qb5_3total Q.B5_3Total Number to TV programmes total in the last 3 months qb5_3a Q.B5_3A Number to TV programmes downloaded in the last 3 months qb5_3b Q.B5_3B Number to TV programmes streamed in the last 3 months qb5_3ab Q.B5_3A/B Number to TV programmes downloaded or streamed in the last 3 months qb5_5a Q.B5_5A Number to TV programmes downloaded/streamed in the last 3 months to Paid for qb5_5a_pro Q.B5_5A Proportion to TV programmes downloaded/streamed in the last 3 months paid for qb5_5ai Q.B5_5Ai Number to TV programmes downloaded/streamed for free in the last 3 months qb5_5ai_pro Q.B5_5Ai Proportion to Films downloaded/streamed for free in the last 3 months qb5_6 Q.B5_6 Number to paid TV programmes previously downloaded or streamed for free in the last 3 months qb5_6_pro Q.B5_6 Proportion to paid TV programmes previously downloaded or streamed for free qb5_5b Q.B5_5B Number to TV programmes downloaded/streamed in the last 3 months already owned on DVD; Blu-Ray or VHS qb5_5b_pro Q.B5_5B Proportion to TV programmes downloaded/streamed in the last 3 months already owned on DVD; Blu-Ray or VHS qb5_7 Q.B5_7 Number to free TV programmes downloaded or streamed legally in the last 3 months qb5_7_t Q.B5_7_T Number to Total TV programmes downloaded or streamed TV programmes legally in the last 3 months qb5_7_pro_a Q.B5_7 Proportion to free TV programmes downloaded or streamed legally in the last 3 months qb5_7_pro_b Q.B5_7 Proportion to Total TV programmes downloaded or streamed legally in the last 3 months qb5_3c Q.B5_3C Number to TV programmes shared in the last 3 months qb5_3d Q.B5_3D Number to TV programmes bought or rented on disc or cartridge in the last 3 months qb6_1total Q.B6_1TOTAL 3 month Spen to Books total qb6_1ai Q.B6_1Ai 3 month Spen to Books to paper copies qb6_1aiii Q.B6_1Aiii 3 month Spen to Books merchandise e.g. T-shirts; Mugs; posters qb6_1aii Q.B6_1Aii 3 month Spen to e-Books to igital copies downloaded qb6_2a Q.B6_2A Frequency of downloading to e-Books qb6_2b Q.B6_2B Frequency of accessing to e-Books qb6_2c Q.B6_2C Frequency of sharing to e-Books qb6_3total Q.B6_3Total Number to Books total in the last 3 months qb6_3a Q.B6_3A Number to e-Books downloaded in the last 3 months qb6_3b Q.B6_3B Number to e-Books accessed in the last 3 months qb6_3ab Q.B6_3A/B Number to e-Books downloaded or accessed in the last 3 months qb6_5a Q.B6_5A Number to e-Books downloaded/accessed in the last 3 months to Paid for qb6_5a_pro Q.B6_5A Proportion to e-Books downloaded/accessed in the last 3 months paid for qb6_5ai Q.B6_5Ai Number to e-Books downloaded/accessed for free in the last 3 months qb6_5ai_pro Q.B6_5Ai Proportion to Books downloaded/accessed for free in the last 3 months qb6_6 Q.B6_6 Number to paid e-Books previously downloaded or accessed for free in the last 3 months qb6_6_pro Q.B6_6 Proportion to paid e-Books previously downloaded or accessed for free qb6_5b Q.B6_5B Number to e-Books downloaded/accessed in the last 3 months already owned on hardbacks and paperbacks qb6_5b_pro Q.B6_5B Proportion to e-Books downloaded/accessed in the last 3 months already owned on DVD; Blu-Ray or VHS qb6_7 Q.B6_7 Number to free e-Books downloaded or accessed legally in the last 3 months qb6_7_t Q.B6_7_T Number to Total e-Books downloaded or accessed books legally in the last 3 months qb6_7_pro_a Q.B6_7 Proportion to free e-Books downloaded or accessed legally in the last 3 months qb6_7_pro_b Q.B6_7 Proportion to Total e-Books downloaded or accessed legally in the last 3 months qb6_3c Q.B6_3C Number to e-Books shared in the last 3 months qb6_3d Q.B6_3D Number to Books bought on hardback or paperback in the last 3 months qb6_8a_01flt_a Q.B6_8A_01 Price Sensitivity to e-Books Download service to £2 qb6_8a_02flt_a Q.B6_8A_02 Price Sensitivity to e-Books Download service to £4 qb6_8a_03flt_a Q.B6_8A_03 Price Sensitivity to e-Books Download service to £6 qb6_8a_04flt_a Q.B6_8A_04 Price Sensitivity to e-Books Download service to £8 qb6_8a_05flt_a Q.B6_8A_05 Price Sensitivity to e-Books Download service to £10 qb6_8a_01a Q.B6_8A_01 Price Sensitivity to e-Books Download service to £2 qb6_8a_02a Q.B6_8A_02 Price Sensitivity to e-Books Download service to £4 qb6_8a_03a Q.B6_8A_03 Price Sensitivity to e-Books Download service to £6 qb6_8a_04a Q.B6_8A_04 Price Sensitivity to e-Books Download service to £8 qb6_8a_05a Q.B6_8A_05 Price Sensitivity to e-Books Download service to £10 qb6_8a_01e Q.B6_8A_01 Price Sensitivity to e-Books Download service to £2 qb6_8a_02e Q.B6_8A_02 Price Sensitivity to e-Books Download service to £4 qb6_8a_03e Q.B6_8A_03 Price Sensitivity to e-Books Download service to £6 qb6_8a_04e Q.B6_8A_04 Price Sensitivity to e-Books Download service to £8 qb6_8a_05e Q.B6_8A_05 Price Sensitivity to e-Books Download service to £10 qb6_8a_01f Q.B6_8A_01 Price Sensitivity to e-Books Download service to £2 qb6_8a_02f Q.B6_8A_02 Price Sensitivity to e-Books Download service to £4 qb6_8a_03f Q.B6_8A_03 Price Sensitivity to e-Books Download service to £6 qb6_8a_04f Q.B6_8A_04 Price Sensitivity to e-Books Download service to £8 qb6_8a_05f Q.B6_8A_05 Price Sensitivity to e-Books Download service to £10 qb6_8b_01flt_a Q.B6_8B_01 Price Sensitivity to e-books Subscription service to £5 qb6_8b_02flt_a Q.B6_8B_02 Price Sensitivity to e-books Subscription service to £7.50 qb6_8b_03flt_a Q.B6_8B_03 Price Sensitivity to e-books Subscription service to £10 qb6_8b_04flt_a Q.B6_8B_04 Price Sensitivity to e-books Subscription service to £12.50 qb6_8b_05flt_a Q.B6_8B_05 Price Sensitivity to e-books Subscription service to £15 qb6_8b_01a Q.B6_8B_01 Price Sensitivity to e-books Subscription service to £5 qb6_8b_02a Q.B6_8B_02 Price Sensitivity to e-books Subscription service to £7.50 qb6_8b_03a Q.B6_8B_03 Price Sensitivity to e-books Subscription service to £10 qb6_8b_04a Q.B6_8B_04 Price Sensitivity to e-books Subscription service to £12.50 qb6_8b_05a Q.B6_8B_05 Price Sensitivity to e-books Subscription service to £15 qb6_8b_01e Q.B6_8B_01 Price Sensitivity to e-books Subscription service to £5 qb6_8b_02e Q.B6_8B_02 Price Sensitivity to e-books Subscription service to £7.50 qb6_8b_03e Q.B6_8B_03 Price Sensitivity to e-books Subscription service to £10 qb6_8b_04e Q.B6_8B_04 Price Sensitivity to e-books Subscription service to £12.50 qb6_8b_05e Q.B6_8B_05 Price Sensitivity to e-books Subscription service to £15 qb6_8b_01f Q.B6_8B_01 Price Sensitivity to e-books Subscription service to £5 qb6_8b_02f Q.B6_8B_02 Price Sensitivity to e-books Subscription service to £7.50 qb6_8b_03f Q.B6_8B_03 Price Sensitivity to e-books Subscription service to £10 qb6_8b_04f Q.B6_8B_04 Price Sensitivity to e-books Subscription service to £12.50 qb6_8b_05f Q.B6_8B_05 Price Sensitivity to e-books Subscription service to £15 qbx_1total Q.BX_1TOTAL (Combined files of interest) 3 month Spen to Total qbx_ai Q.BX_Ai (Combined files of interest) 3 month Spen to Physical copies qbx_aii Q.BX_Aii (Combined files of interest) 3 month Spen to Individual online purchases (downloads/streams) qbx_aiii Q.BX_Aiii (Combined files of interest) 3 month Spen to Online purchases + Subscriptions qbx_av Q.BX_Av (Combined files of interest) 3 month Spen to Other qbx_3total Q.Bx_3TOTAL (Combined files of interest) Number to Summary Total in the last 3 months qbx_3a_tot Q.Bx_3A (Combined files of interest) Number to content types of interest downloaded in the last 3 months qbx_3b_tot Q.Bx_3B Number to content types of interest streamed/accessed in the last 3 months qbx_3ab_tot Q.Bx_3A/B (Combined files of interest) Number to content types of interest downloaded or streamed/accessed in the last 3 months qbx_5a_tot Q.Bx_5A (Combined files of interest) Number to content types of interest downloaded or streamed/accessed in the last 3 months to Paid for qbx_5ai_tot Q.Bx_5Ai (Combined files of interest) Number to content types of interest downloaded or streamed/accessed for free in the last 3 months qbx_5a_pro Q.Bx_5A (Combined files of interest) Proportion to content types of interest downloaded/streamed/accessed in the last 3 months to paid for qbx_5ai_pro Q.Bx_5Ai (Combined files of interest) Proportion to content types of interest downloaded/streamed/accessed for free in the last 3 months qbx_6_num Q.Bx_6 (Combined files of interest) Number to paid content types of interest previously downloaded or streamed/accessed for free qbx_6_pro Q.Bx_6 (Combined files of interest) Proportion to paid content types of interest previously downloaded or streamed/accessed for free qbx_5b_tot Q.Bx_5B (Combined files of interest) Number to ownloaded/accessed/streamed content types of interest in the last 3 months already owned in physical format qbx_5b_pro Q.Bx_5B (Combined files of interest) Proportion to ownloaded/streamed/accessed content types of interest in the last 3 months already owned in physical format qbx_7b_a Q.Bx_7B (Combined files of interest) Number to paid content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7b_pro Q.Bx_7B (Combined files of interest) Proportion to paid content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7a_a Q.Bx_7 (Combined files of interest) Number to free content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7_pro_a Q.Bx_7 (Combined files of interest) Proportion to free content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7a_b Q.Bx_7 (Combined files of interest) Number to total content types of interest downloaded or streamed/accessed legally in the last 3 months (including paid illegal) qbx_7_pro_b Q.Bx_7 (Combined files of interest) Proportion to total content types of interest downloaded or accessed legally in the last 3 months (including paid illegal) qbx_7a_ab Q.Bx_7 (Combined files of interest) Number to total content types of interest downloaded or streamed/accessed legally in the last 3 months (presuming paid as legal) qbx_7_pro_ab Q.Bx_7 (Combined files of interest) Proportion to total content types of interest downloaded or accessed legally in the last 3 months (presuming paid as legal) qbx_3c Q.Bx_3C (Combined files of interest) Number to content types of interest shared in the last 3 months qbx_3d Q.Bx_3D (Combined files of interest) Number to content types of interest bought in physical format in the last 3 months q301 4OD q302 7 Digital q303 Amazon Amazon mp3 Kindle q304 BBC iPlayer q305 Blinkbox q306 Demand 5 q307 eMusic q308 Google Play Android Marketplace q309 HMV Digital q310 iTunes App Store ibookstore Apple Store q313 Lovefilm q314 Miniclip q315 Napster q316 Netflix q317 Play.com q318 Samsung Movie Store q319 Sky Go q320 Sony Entertainment Network to Music Unlimited
Video Unlimited Playstation Network q321 Spotify q322 Steam q323 We7 q324 Xbox Live q325 YouTube q326 Zune q327 Other website or service q328 Don't Know q4a Q.4A Agreement statement to I think that you should be able to download or access the content you want for free from the internet q4b Q.4B Agreement statement to It is easy to find content on the internet for free that would usually be paid for q4c Q.4C Agreement statement to Content that you download or access online should be cheaper than the equivalent purchased in a physical format (e.g. a CD; DVD; Blu-ray; or VHS) q4d Q.4D Agreement statement to If you had paid for a digital file you should then be able to share it with others q4e Q.4E Agreement statement to The rules governing what you can and can't do with content you purchase should be the same for both physical (e.g. a CD; DVD; Blu-ray; or VHS) and online formats q4f Q.4F Agreement statement to It is wrong to access content online without the creatorsartists permission q4g Q.4G Agreement statement to The price that you pay to download or access content online is generally about right q4h Q.4H Agreement statement to I find it difficult to find legal content online q501 It's easiermore convenient q502 It's quicker q503 It's cheaper q504 I can get them for free q505 The quality isn't noticeably different q506 It's more up-to-date q507 It's what everyone does q508 I can access them more easily on the devices I have q509 No physical version available q510 Less clutter/storage/space issues q511 Can download part (album)/just 1 song/just what I want q512 I haven't downloaded anything illegal/not interested q513 To try before I buy q514 Other reason q515 Don't know q601 I'm not interested q602 I prefer to have a physical copy q603 I prefer to streamaccess (without downloading) files q604 They are too expensive q605 The quality is not as good q606 It is easier to buy physical copies q607 I do not have a creditdebit card q608 I fear that they could be illegal q609 I fear they may have viruses malware spyware q610 I'm unaware of the download services available q611 I'm not sure how to do it q612 I don't own a computer device capable of downloading q613 Physical copies are more flexible q614 I am not allowed to (by Mum or Dad) q615 Computer does not have capacity/download speed q616 Nothing that I wanted/needed q617 Trying to save money/short of funds q618 No time/busy doing other things q619 Someone else does this (for me) q620 Concerns about using card/payments online q621 Other reason q622 Don't know q701 It's easiermore convenient q702 It's quicker q703 They are better quality q704 I don't want to use illegal sites q705 I think it's morally wrong to use illegal sites q706 I want to support creatorsindustry q707 I fear they may have viruses malware spyware q708 I fear I might be caught q709 I can afford to pay q710 I prefer to pay q711 I don't think it is right to get them for free q712 I'm unaware of the free services available q713 I don't know how to use the free services q714 Free/ cheap/ part of a subscription q715 Parents would not allow me to use free service q716 Were not available for free q717 Had gift card/voucher q718 Have not done sodoes not apply to me q719 Other reason q720 Don't know q801 It's easyconvenient q802 It's quick q803 It's free q804 It's easy to do q805 It's quicker than downloading q806 It's cheaper than downloading q807 It means I don't have to download them q808 It means I can try something before I buy it q809 It's what my friends or family do q810 My friends can't access files themselves q811 My family can't access files themselves q812 Some types of files are too expensive to buy q813 For entertainment q814 Don't have a TV radio q815 To watch programmes I have missed (on TV) q816 Content unavailable elsewhere q817 Other reason q818 Don't know q901 It's easy to do q902 It's only fair q903 It's what everyone does q904 I don't know how to share them q905 My friends\family cant access files themselves q907 Unless I share content; I can't download other files myself q908 Ipod (Touch)/MP3 player q909 Mobile phone to no detail of internet access q910 Other reason q10a01 It's easyconvenient q10a02 It's quick q10a04 It means I can try something before I buy it q10a05 It's what my friends or family do q10a06 Because I can q10a07 I already owned content in another format q10a08 I've already paid to see it\them at the cinemain concert; etc q10a09 I don't want to wait for content to become available on legal services q10a10 I can't afford to pay q10a11 I think legal content is too expensive q10a12 I think legal content is too poor quality q10a13 The files I want are not available on legal services q10a14 I don't think I should have to pay for files online? q10a15 The Industry makes too much money q10a16 I already spend enough on content q10a17 No one suffers q10a18 No one ever gets caught q10a19 It gives me status q10a20 Wasn't sure of legality/not sure if legal or not q10a21 I didn't think/know/realise it was illegal/was in error q10a22 I have paid for it q10a23 I have not downloaded/accessed illegally q10a24 I didn't say that/give that answer (no detail) q10a25 I'm confused/don't understand the question q10a26 Other reason q10a27 Not applicable/None q10a28 Don't know q10b01 If everyone else stopped doing it q10b02 If legal services were better q10b03 If legal services were cheaper q10b04 If legal services were more convenient\flexible q10b05 If everything I wanted was available legally q10b06 If I thought I might be caught q10b07 If I thought I might be sued q10b08 If my ISP sent me a letter informing me my account had been used to infringe q10b09 If my ISP sent me a letter saying they would restrict my internet speed q10b10 If my ISP sent me a letter saying they would suspend my internet access q10b11 If friends or family were caught q10b12 If there were articles in the media about people being caught q10b13 If a subscription service I was interested in became available q10b14 If everything I wanted was available legally online as soon as it was released elsewhere q10b15 If it is clearer what is legal and what isn't q10b16 If I knew where to go to see if something was illegal or not q10b17 I do not do this/do not download illegally/always use legal site q10b18 Would/do not do it intentionally/if thought was illegal I wouldn't do it q10b19 If I got a virus/concerned about viruses q10b20 Other reason q10b21 Nothing would make me stop q10b22 Not applicable/None q10b23 Don't know q11a Q.11A How confident are you that you know what is legal and what isn't in terms of downloading; streamingaccessing; and sharing content through the internet? q11b01 Reputable/well known company or brand (including those advertised) q11b02 Government approval/accreditation q11b03 Security measures on site (Payment; Certificates; Terms & Conditions; Password protection; etc...) q11b04 Site doesnÆt contain certain elements (Viruses; Pop up adverts; etc...) q11b05 Do not (download/stream/access) illegally q11b06 Do not download q11b07 I'm not interested q11b08 It's illegal/against the law/people shouldn't do it q11b09 Free/easily accessible/quick q11b10 Difficult to know if its legal or not/don't trust it q11b11 (Warning) information on site q11b12 Rely on other people to tell me/do it for me/word of mouth/reviews q11b13 If there was industry/standard symbol/kite mark to show (clearly) it was legal q11b14 If the website clearly stated that it was legal q11b15 Payment/cost/price q11b16 If there was a site/organisation I could go to check with listing of legal/authorised sites q11b17 Previous knowledge/already know they are legal q11b18 Quality/professional/official (looking) site q11b19 Copyright statements q11b20 Research the company q11b21 Approved website/ recognised governing body q11b22 Endorsements from / backed by music industry / artist / owner q11b23 Don't know much about downloading / how to download q11b24 Have (anti virus) software that tells me q11b25 Address/ web domain q11b26 Other answers q11b27 None/Don't Know csex GENDER cage2 AGE cage6 AGE cage8 AGE class3 SOCIAL CLASS class41 AB class42 C1 class43 C2 class44 DE class45 ABC1 class46 C2DE class5 SOCIAL CLASS cmari1 MARITAL STATUS cwork1 WORKING STATUS cwork5 WORKING STATUS child2 PRESENCE OF CHILDREN child51 Any child52 None child53 0-5 years child54 6-10 years child55 11-15 years chsex1 Male chsex2 Female cads NUMBER OF ADULTS IN HOUSEHOLD chhs HOUSEHOLD SIZE cnet21 Any Home Access cnet22 Any Work Access cnet23 Any Other Access cnet3 INTERNET ACCESS break_books07 Any Paid cnet01 Access to the Internet at home on a computerlaptop cnet02 Access to the Internet at work on a computerlaptop cnet03 Access to the Internet at home on a games console cnet04 Internet at home through your TV screen via a computer cnet05 Internet at home directly through your TV set i.e. SmartConnected TV) cnet06 Access to the Internet via a mobile phone break_combine_105 Mix of paid and free cnet07 Access to the internet on a tablet computer e.g. iPad cnet08 Access to the Internet on a Palmtop or Personal Digital Assistant (PDA)Pocket PC cnet09 Access to the Internet at schoolcollege university on a computer cnet10 Internet access from a library on a computer cnet11 Internet access in a cafÚ\bar on a computer cnet12 Internet access at a friend's or relative's house on a computer cnet13 Other Internet access cnet14 An e-mail address at home cnet15 An e-mail address at work cnet16 Other e-mail address cnet17 None of these satcab81 Pay TV satcab82 FTA only satcab83 No Multi Channel cphone5 PHONE cten TENURE rural2 AREA country1 COUNTRY gor GOVERNMENT REGIONS govreg3 GOVERNMENT REGIONS govreg12 GOVERNMENT REGIONS ceth ETHNICITY ceth3 ETHNICITY break2_int_acc Q.D INTERNET USAGE break2_device1 Any Mobile break2_device2 Mobile with Internet break2_device3 Computer break2_device4 Tablet break2_device5 Ebook reader break2_device6 Games Console break2_device7 Mobile games device break2_tvtype1 Pay TV break2_tvtype2 FTA only break2_tvtype3 No Multi Channel break_b1_q3c1_2 MUSIC TRACKS OWNED IN DIGITAL FORMAT (AMONGST SHARERS) (Q.B1_3C1) break4_q1a_q2a1 Ever break4_q1a_q2a2 Last 3 months break4_q1b_q2b1 Ever break4_q1b_q2b2 Last 3 months break4_q1c_q2c1 Ever break4_q1c_q2c2 Last 3 months break4_q1abc_q2abc1 Ever break4_q1abc_q2abc2 Last 3 months break_music01 Downloaded break_music02 Streamed break_music03 Shared break_music04 Downloaded or streamed (consumed) break_music05 100% paid break_music06 Mix of paid and free break_music07 100% free break_music08 Any Paid break_music09 Any Free break_music10 100% legal break_music11 Mix of legal and illegal break_music12 100% illegal break_music13 Any illegal break_music14 Any Legal break_music_infring TOP % MUSIC INFRINGERS break_videogames01 Downloaded break_videogames02 Accessed break_videogames03 Shared break_videogames04 100% paid break_videogames05 Mix of paid and free break_videogames06 100% free break_videogames07 Any Paid break_videogames08 Any Free break_videogames09 100% legal break_videogames10 Mix of legal and illegal break_videogames11 100% illegal break_videogames12 Any illegal break_videogames13 Any Legal break_videogames_infring TOP % VIDEO GAME INFRINGERS break_software01 Downloaded break_software02 Accessed break_software03 Shared break_software04 100% paid break_software05 Mix of paid and free break_software06 100% free break_software07 Any Paid break_software08 Any Free break_software09 100% legal break_software10 Mix of legal and illegal break_software11 100% illegal break_software12 Any illegal break_software13 Any Legal break_software_infring TOP % COMPUTER SOFTWARE INFRINGERS break_films01 Downloaded break_films02 Streamed break_films03 Shared break_films04 Downloaded or streamed (consumed) break_films05 100% paid break_films06 Mix of paid and free break_films07 100% free break_films08 Any Paid break_films09 Any Free break_films10 100% legal break_films11 Mix of legal and illegal break_films12 100% illegal break_films13 Any illegal break_films14 Any Legal break_films_infring TOP % FILM INFRINGERS break_tv_prgrms01 Downloaded break_tv_prgrms02 Streamed break_tv_prgrms03 Shared break_tv_prgrms04 100% paid break_tv_prgrms05 Mix of paid and free break_tv_prgrms06 100% free break_tv_prgrms07 Any Paid break_tv_prgrms08 Any Free break_tv_prgrms09 100% legal break_tv_prgrms10 Mix of legal and illegal break_tv_prgrms11 100% illegal break_tv_prgrms12 Any illegal break_tv_prgrms13 Any Legal break_tv_prgrms_infring TOP % TV PROGRAMME INFRINGERS break_books01 Downloaded break_books02 Accessed break_books03 Shared break_books04 100% paid break_books05 Mix of paid and free break_books06 100% free break_books08 Any Free break_books09 100% legal break_books10 Mix of legal and illegal break_books11 100% illegal break_books12 Any illegal break_books13 Any Legal break_combine_101 Downloaded break_combine_102 Streamed/Accessed break_combine_103 Shared break_combine_104 100% paid break_combine_106 100% free break_combine_107 Any Paid break_combine_108 Any Free break_combine_109 100% legal break_combine_110 Mix of legal and illegal break_combine_111 100% illegal break_combine_112 Any illegal break_combine_113 Any legal break_combine_201 Downloaded break_combine_202 Streamed/Accessed break_combine_203 Shared break_combine_204 100% paid break_combine_205 Mix of paid and free break_combine_206 100% free break_combine_207 Any Paid break_combine_208 Any Free break_combine_209 100% legal break_combine_210 Mix of legal and illegal break_combine_211 100% illegal break_combine_212 Any illegal break_combine_213 Any legal break_methodology METHODOLOGY TYPE break_methodology_week METHODOLOGY TYPE (WEEK WISE) wave WAVE top_infringers TOP % INFRINGERS illigal_seg ILLEGAL SEGMENTS legal_seg LEGAL SEGMENTS dummy dummy wts_var Weight Variable cexage Exact age qb1_1total_raw Q.B1_1TOTAL 3 month Spen to Music total qb1_1aother_raw Q.B1_1OTHER 3 month Spen to Music other qb1_1ai_raw Q.B1_1Ai 3 month Spen to Music concerts or gigs qb1_1aii_raw Q.B1_1Aii 3 month Spen to Music merchandise qb1_1aiii_raw Q.B1_1Aiii 3 month Spen to Music tracks or albums on CD or Vinyl qb1_1aiv_raw Q.B1_1Aiv 3 month Spen to Music tracks or albums downloaded or streamed/accessed online qb1_1av_raw Q.B1_1Av 3 month Spen to Music subscriptions qb2_1total_raw Q.B2_1TOTAL 3 month Spen to Video Games total qb2_1ai_raw Q.B2_1Ai 3 month Spen to Video Games on Disc or Cartridge qb2_1aii_raw Q.B2_1Aii 3 month Spen to Video Games downloaded or accessed qb2_1aiii_raw Q.B2_1Aiii 3 month Spen to Video Games merchandise e.g. Tshirts; Mugs; Posters qb3_1total_raw Q.B3_1TOTAL 3 month Spen to Computer Software total qb3_1ai_raw Q.B3_1Ai 3 month Spen to Computer Software on disc or Cartridge qb3_1aii_raw Q.B3_1Aii 3 month Spen to Computer Software downloaded or accessed qb4_1total_raw Q.B4_1TOTAL 3 month Spen to Films total qb4_1aother_raw Q.B4_1OTHER 3 month Spen to Films Other qb4_1ai_raw Q.B4_1Ai 3 month Spen to Films watched at the cinema qb4_1aii_raw Q.B4_1Aii 3 month Spen to Rented films on DVD; Bluray; or VHS qb4_1aiii_raw Q.B4_1Aiii 3 month Spen to Films purchased on DVD; Bluray; or VHS qb4_1aiv_raw Q.B4_1Aiv 3 month Spen to Online films purchased individually qb4_1av_raw Q.B4_1Av 3 month Spen to Online film subscriptions qb4_1avi_raw Q.B4_1Avi 3 month Spen to Films purchased individually through Pay TV service qb4_1avii_raw Q.B4_1Avii 3 month Spen to Films bought or rented on DVD; Bluray or VHS qb4_1aviii_raw Q.B4_1Aviii 3 month Spen to Films merchandise e.g. T-shirts; Mugs; Posters qb5_1total_raw Q.B5_1TOTAL 3 month Spen to TV programmes total qb5_1ai_raw Q.B5_1Ai 3 month Spen to TV programmes rented on DVD; Bluray; or VHS qb5_1aii_raw Q.B5_1Aii 3 month Spen to TV programmes purchased on DVD; Bluray; or VHS qb5_1aiii_raw Q.B5_1Aiii 3 month Spen to TV programmes downloaded or streamed using an internet connection qb5_1aiv_raw Q.B5_1Aiv 3 month Spen to TV programmes bought or rented on DVD; Blu-ray or VHS qb5_1av_raw Q.B5_1Av 3 month Spen to TV programmes merchandise e.g. T-shirts; Mugs; Posters qb6_1total_raw Q.B6_1TOTAL 3 month Spen to Books total qb6_1ai_raw Q.B6_1Ai 3 month Spen to Books to paper copies qb6_1aii_raw Q.B6_1Aii 3 month Spen to e-Books to igital copies downloaded qb6_1aiii_raw Q.B6_1Aiii 3 month Spen to Books merchandise e.g. T-shirts; Mugs; posters qb1_3total_raw Q.B1_3Total Number to Music total in the last 3 months qb2_3total_raw Q.B2_3Total Number to Video Games total in the last 3 months qb3_3total_raw Q.B3_3Total Number to Computer Software total in the last 3 months qb4_3total_raw Q.B4_3Total Number to Films total in the last 3 months qb5_3total_raw Q.B5_3Total Number to TV programmes total in the last 3 months qb6_3total_raw Q.B6_3Total Number to e-Books total in the last 3 months qb1_3a_raw Q.B1_3A Number to Music tracks downloaded in the last 3 months qb2_3a_raw Q.B2_3A Number to Video Games downloaded in the last 3 months qb3_3a_raw Q.B3_3A Number to Computer Software downloaded in the last 3 months qb4_3a_raw Q.B4_3A Number to Films downloaded in the last 3 months qb5_3a_raw Q.B5_3A Number to TV programmes downloaded in the last 3 months qb6_3a_raw Q.B6_3A Number to e-Books downloaded in the last 3 months qb1_3b_raw Q.B1_3B Number to Music tracks streamed/accessed in the last 3 months qb2_3b_raw Q.B2_3B Number to Video Games accessed in the last 3 months qb3_3b_raw Q.B3_3B Number to Computer Software accessed in the last 3 months qb4_3b_raw Q.B4_3B Number to Films streamed in the last 3 months qb5_3b_raw Q.B5_3B Number to TV programmes streamed in the last 3 months qb6_3b_raw Q.B6_3B Number to e-Books accessed in the last 3 months qb1_3ab_raw Q.B1_3A/B Number to Music tracks downloaded or streamed/accessed in the last 3 months qb2_3ab_raw Q.B2_3A/B Number to Video Games downloaded or /accessed in the last 3 months qb3_3ab_raw Q.B3_3A/B Number to Computer Software downloaded or accessed in the last 3 months qb4_3ab_raw Q.B4_3A/B Number to Films downloaded or streamed in the last 3 months qb5_3ab_raw Q.B5_3A/B Number to TV programmes downloaded or streamed in the last 3 months qb6_3ab_raw Q.B6_3A/B Number to e-Books downloaded or accessed in the last 3 months qb1_5a_raw Q.B1_5A Number to Music tracks downloaded/streamed in the last 3 months to Paid for qb2_5a_raw Q.B2_5A Number to Video Games downloaded/accessed in the last 3 months to Paid for qb3_5a_raw Q.B3_5A Number to Computer Software downloaded/accessed in the last 3 months to Paid for qb4_5a_raw Q.B4_5A Number to Films downloaded/streamed in the last 3 months to Paid for qb5_5a_raw Q.B5_5A Number to TV programmes downloaded/streamed in the last 3 months to Paid for qb6_5a_raw Q.B6_5A Number to e-Books downloaded/accessed in the last 3 months to Paid for qb1_5ai_raw Q.B1_5Ai Number to Music tracks downloaded/streamed for free in the last 3 months qb2_5ai_raw Q.B2_5Ai Number to Video Games downloaded/accessed for free in the last 3 months qb3_5ai_raw Q.B3_5Ai Number to Computer Software downloaded/accessed for free in the last 3 months qb4_5ai_raw Q.B4_5Ai Number to Films downloaded/streamed for free in the last 3 months qb5_5ai_raw Q.B5_5Ai Number to TV programmes downloaded/streamed for free in the last 3 months qb6_5ai_raw Q.B6_5Ai Number to e-Books downloaded/accessed for free in the last 3 months qb1_6_raw Q.B1_6 Number to Music tracks downloaded/streamed previously for free qb2_6_raw Q.B2_6 Number to Video Games downloaded/accessed previously for free qb3_6_raw Q.B3_6 Number to Computer Software downloaded/accessed previously for free qb4_6_raw Q.B4_6 Number to Films downloaded/streamed previously for free qb5_6_raw Q.B5_6 Number to TV programmes downloaded/streamed previously for free qb6_6_raw Q.B6_6 Number to e-Books downloaded/accessed previously for free qb1_5b_raw Q.B1_5B Number to ownloaded/streamed music (last 3 months) already owned on disc or vinyl qb2_5b_raw Q.B2_5B Number to ownloaded/accessed Video Games (last 3 months) already owned on disc or cartridge qb3_5b_raw Q.B3_5B Number to ownloaded/accessed Computer Software (last 3 months) already owned on disc qb4_5b_raw Q.B4_5B Number to ownloaded/streamed Films (last 3 months) already owned on DVD; Blu-Ray or VHS qb5_5b_raw Q.B5_5B Number to ownloaded/streamed TV programmes (last 3 months) already owned on DVD; Blu-Ray or VHS qb6_5b_raw Q.B6_5B Number to ownloaded/accessed e-Books (last 3 months) already owned on hardbacks and paperbacks qb4_5c_raw Q.B4_5C Number to ownloaded/streamed Films (last 3 months) already seen at cinema or through TV service qb1_7_raw Q.B1_7 Number to free music tracks downloaded or streamed legally qb2_7_raw Q.B2_7 Number to free Video Games downloaded or accessed legally qb3_7_raw Q.B3_7 Number to free Computer Software downloaded or accessed legally qb4_7_raw Q.B4_7 Number to free Films downloaded or streamed legally qb5_7_raw Q.B5_7 Number to free TV programmes downloaded or streamed legally qb6_7_raw Q.B6_7 Number to free e-Books downloaded or accessed legally qb1_7b_raw Q.B1_7B Number to Paid music tracks downloaded or streamed legally in the last 3 months qb4_7b_raw Q.B4_7B Number to Paid Films downloaded or streamed legally in the last 3 months qb1_7_tot_raw Q.B1_7_T Number to Total music tracks downloaded or streamed online legally in the last 3 months (presuming paid as legal) qb1_7b_tot_raw Q.B1_7B_T Number to Total music tracks downloaded or streamed online legally in the last 3 months (including paid illegal) qb2_7_tot_raw Q.B2_7_T Number to Total Video Games downloaded or accessed legally in the last 3 months qb3_7_tot_raw Q.B3_7_T Number to Total Computer Software downloaded or accessed legally in the last 3 months qb4_7_tot_raw Q.B4_7_T Number to Total Films downloaded or streamed legally in the last 3 months (presuming paid as legal) qb4_7b_tot_raw Q.B4_7B_T Number to Total Films downloaded or streamed online legally in the last 3 months (including paid illegal) qb5_7_tot_raw Q.B5_7_T Number to Total TV programmes downloaded or streamed legally in the last 3 months qb6_7_tot_raw Q.B6_7_T Number to Total e-Books downloaded or accessed legally in the last 3 months qb1_3c1_raw Q.B1_3C1 Number to Music tracks owned in digital format (amongst sharers) qb1_3c2_raw Q.B1_3C2 Number to Music tracks shared in the last 3 months qb1_3c1c2_raw Q.B1_3C1/2 Number to Owned v Shared qb2_3c_raw Q.B2_3C Number to Video Games shared in the last 3 months qb3_3c_raw Q.B3_3C Number to Computer Software shared in the last 3 months qb4_3c_raw Q.B4_3C Number to Films shared in the last 3 months qb5_3c_raw Q.B5_3C Number to TV programmes shared in the last 3 months qb6_3c_raw Q.B6_3C Number to e-Books shared in the last 3 months qb1_3d_raw Q.B1_3D Number to Music tracks bought on CD or vinyl in the last 3 months qb2_3d_raw Q.B2_3D Number to Video Games bought on disc or cartridge in the last 3 months qb3_3d_raw Q.B3_3D Number to Computer Software bought on disc or cartridge in the last 3 months qb4_3d_raw Q.B4_3D Number to Films bought on DVD; Bluray or VHS in the last 3 months qb5_3d_raw Q.B5_3D Number to TV programmes bought on disc or cartridge in the last 3 months qb6_3d_raw Q.B6_3D Number to e-Books bought on hardback or paperback in the last 3 months qb1_3c_pro_raw Q.B1_3C1/2 Proportion to music library shared in the last 3 months qb1_5a_pro_raw Q.B1_5A Proportion of downloaded/streamed music (last 3 months) paid for qb1_5ai_pro_raw Q.B1_5Ai Proportion to Music tracks downloaded/streamed for free in the last 3 months qb1_6_pro_raw Q.B1_6 Proportion of paid music tracks previously downloaded or streamed for free qb1_5b_pro_raw Q.B1_5B Proportion of downloaded/streamed music (last 3 months) already owned on disc or vinyl qb1_7b_pro_paid_raw Q.B1_7B Proportion to Paid music tracks downloaded or streamed legally in the last 3 months qb1_7b_pro_all_raw Q.B1_7B Proportion to Total music tracks downloaded or streamed legally in the last 3 months (Including paid illegal) qb1_7_pro_free_raw Q.B1_7 Proportion of free music tracks downloaded or streamed legally qb1_7_pro_all_raw Q.B1_7 Proportion of all music tracks downloaded or streamed legally qb2_5a_pro_raw Q.B2_5A Proportion to ownloaded/accessed Video Games (last 3 months) paid for qb2_5ai_pro_raw Q.B2_5Ai Proportion to Video Games downloaded/accessed for free in the last 3 months qb2_6_pro_raw Q.B2_6 Proportion of paid Video Games previously downloaded or accessed for free qb2_5b_pro_raw Q.B2_5B Proportion of downloaded/accessed Video Games (last 3 months) already owned on disc or cartridge qb2_7_pro_free_raw Q.B2_7 Proportion of free Video Games downloaded or streamed legally qb2_7_pro_all_raw Q.B2_7 Proportion of all Video Games downloaded or streamed legally qb3_5a_pro_raw Q.B3_5A Proportion -of downloaded/accessed Computer Software (last 3 months) paid for qb3_5ai_pro_raw Q.B3_5Ai Proportion to Computer software downloaded/accessed for free in the last 3 months qb3_6_pro_raw Q.B3_6 Proportion of paid Computer Software previously downloaded or accessed for free qb3_5b_pro_raw Q.B3_5B Proportion of downloaded/accessed Computer Software (last 3 months) already owned on disc qb3_7_pro_free_raw Q.B3_7 Proportion of free Computer Software downloaded or streamed legally qb3_7_pro_all_raw Q.B3_7 Proportion of all Computer Software downloaded or streamed legally qb4_5a_pro_raw Q.B4_5A Proportion of downloaded/streamed Films (last 3 months) paid for qb4_5ai_pro_raw Q.B4_5Ai Proportion to Films downloaded/streamed for free in the last 3 months qb4_6_pro_raw Q.B4_6 Proportion of paid Films previously downloaded or streamed for free qb4_5b_pro_raw Q.B4_5B Proportion of downloaded/streamed Films (last 3 months) already owned on DVD; Blu-Ray or VHS qb4_5c_pro_raw Q.B4_5C Proportion of downloaded/streamed Films (last 3 months) already seen at cinema or through TV service qb4_7b_pro_free_raw Q.B4_7B Proportion to Paid films downloaded or streamed legally in the last 3 months qb4_7b_pro_all_raw Q.B4_7B Proportion to Total films downloaded or streamed legally in the last 3 months (Including paid illegal) qb4_7_pro_free_raw Q.B4_7 Proportion of free films downloaded or streamed legally qb4_7_pro_all_raw Q.B4_7 Proportion of all films downloaded or streamed legally qb5_5a_pro_raw Q.B5_5A Proportion to ownloaded/streamed TV programmes (last 3 months) paid for qb5_5ai_pro_raw Q.B5_5Ai Proportion to Films downloaded/streamed for free in the last 3 months qb5_6_pro_raw Q.B5_6 Proportion of paid TV programmes previously downloaded or streamed for free qb5_5b_pro_raw Q.B5_5B Proportion of downloaded/streamed TV programmes (last 3 months) already owned on DVD; Blu-Ray or VHS qb5_7_pro_free_raw Q.B5_7 Proportion of free TV programmes downloaded or streamed legally qb5_7_pro_all_raw Q.B5_7 Proportion of all TV programmes downloaded or streamed legally qb6_5a_pro_raw Q.B6_5A Proportion of downloaded/accessed e-Books (last 3 months) paid for qb6_5ai_pro_raw Q.B6_5Ai Proportion to Books downloaded/accessed for free in the last 3 months qb6_6_pro_raw Q.B6_6 Proportion of paid e-Books previously downloaded or accessed for free qb6_5b_pro_raw Q.B6_5B Proportion of downloaded/accessed e-Books (last 3 months) already owned on hardbacks and paperbacks qb6_7_pro_free_raw Q.B6_7 Proportion of free e-Books downloaded or accessed legally qb6_7_pro_all_raw Q.B6_7 Proportion of all e-Books downloaded or accessed legally qbx_1_total_raw QBx_1TOTAL (Combined files of interest) 3 month Spen to Total qbx_1_physical_raw QBx_1PHYS(Combined files of interest) 3 month Spen to Physical copies qbx_1_onl_pur_raw QBx_1ON(Combined files of interest) 3 month Spen to Individual online purchases (downloads/streams) qbx_1_onl_sub_raw QBx_1ONSUB (Combined files of interest) 3 month Spen to Online purchases + subscriptions qbx_1_other_raw QBx_1OTHER(Combined files of interest) 3 month Spen to Other qbx_3sum2_raw Q.Bx_3SUM2 (Combined files of interest) Number to Summary of Total qbx_3a_raw Q.Bx_3A (Combined files of interest) Number to content types of interest downloaded in the last 3 months qbx_3b_raw Q.Bx_3B Number to content types of interest streamed/accessed in the last 3 months qbx_3ab_raw Q.Bx_3A/B (Combined files of interest) Number to content types of interest downloaded or streamed/accessed in the last 3 months qbx_5a_numb_raw Q.Bx_5A (Combined files of interest) Number to content types of interest downloaded/streamed in the last 3 months to Paid for qbx_5ai_numb_raw Q.Bx_5Ai (Combined files of interest) Number to content types of interest downloaded or streamed/accessed for free in the last 3 months qb1_6_5a_pro_raw Q.Bx_5A (Combined files of interest) Proportion of downloaded/streamed content types of interest (last 3 months) paid for qb1_6_5ai_pro_raw Q.Bx_5Ai (Combined files of interest) Proportion to content types of interest downloaded/streamed/accessed for free in the last 3 months qbx_6 Q.Bx_6 (Combined files of interest) Number to paid content types of interest previously downloaded or streamed/accessed for free qb1_6_6_pro_raw Q.Bx_6 (Combined files of interest) Proportion of content types of interest previously downloaded or streamed for free qbx_5b_numb_raw Q.Bx_5B (Combined files of interest) Number to ownloaded/accessed content types of interest (last 3 months) already owned in physical format qb1_6_5b_pro_raw Q.Bx_5B (Combined files of interest) Proportion of downloaded/streamed content types of interest (last 3 months) already owned on disc or vinyl qbx_7b_numb_raw Q.Bx_7B (Combined files of interest) Number to paid content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7b_pro_raw Q.Bx_7B (Combined files of interest) Proportion to paid content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7_numb_raw Q.Bx_7 (Combined files of interest) Number to free content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7_pro_raw Q.Bx_7 (Combined files of interest) Proportion to free content types of interest downloaded or streamed/accessed legally in the last 3 months qbx_7a_b_numb_raw Q.Bx_7 (Combined files of interest) Number to total content types of interest downloaded or streamed/accessed legally in the last 3 months (including paid illegal) qbx_7_b_pro_raw Q.Bx_7 (Combined files of interest) Proportion to total content types of interest downloaded or accessed legally in the last 3 months (including paid illegal) qbx_7a_a_numb_raw Q.Bx_7 (Combined files of interest) Number to total content types of interest downloaded or streamed/accessed legally in the last 3 months (presuming paid as legal) qbx_7_a_pro_raw Q.Bx_7 (Combined files of interest) Proportion to total content types of interest downloaded or accessed legally in the last 3 months (presuming paid as legal) qbx_3c_raw Q.Bx_3C (Combined files of interest) Number to content types of interest shared in the last 3 months qbx_3d_raw Q.Bx_3D (Combined files of interest) Number to content types of interest bought in physical format in the last 3 months qb1_7i_raw Q.B1_7i Number to Total music tracks downloaded or streamed online illegally in the last 3 months (including paid illegal) qb2_7i_raw Q.B2_7i Number to Total Video games downloaded or accessed online illegally in the last 3 months (including paid illegal) qb3_7i_raw Q.B3_7i Number to Total Software downloaded or accessed online illegally in the last 3 months (including paid illegal) qb4_7i_raw Q.B4_7i Number to Total films downloaded or streamed online illegally in the last 3 months (including paid illegal) qb5_7i_raw Q.B5_7i Number to Total TV programmes downloaded or streamed online illegally in the last 3 months (including paid illegal) qb6_7i_raw Q.B6_7i Number to Total books downloaded or accessed online illegally in the last 3 months (including paid illegal) qbx_7i_raw Q.Bx_7i Number to Combined files of interest downloaded or streamed/accessed online illegally in the last 3 months (including paid illegal) numbhh Number in household wmid1 Numeric for wmid1 \. -- -- TOC entry 2165 (class 0 OID 498284) -- Dependencies: 188 -- Data for Name: states; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY states (title, data, description, username, category, screenshot) FROM stdin; Total level of infringement {"title":"Total level of infringement","dataset":"wave5","qkeys":[{"qkeys":"qbx_7_pro_ab","text":"qbx_7_pro_ab --> Q.Bx_7 (Combined files of interest) Proportion - total content types of interest downloaded or accessed legally in the last 3 months (presuming paid as legal) (Rank 780)"}],"excludeFilters":{"qbx_7_pro_ab":[" "]},"category":"Infringement","description":"The overall level of infringement, as this is measured by the fraction of individuals who access content only illegally (100% illegal activity) increased from 7.05% in 2013 to 9.43% in 2015 or from 206 respondents in 2013 to 268 in 2015 (sample of respondents=2921)."} The overall level of infringement, as this is measured by the fraction of individuals who access content only illegally (100% illegal activity) increased from 7.05% in 2013 to 9.43% in 2015 or from 206 respondents in 2013 to 268 in 2015 (sample of respondents=2921). Infringement \N Book infringement {"title":"Book infringement","dataset":"wave4","qkeys":[{"qkeys":"qb6_7_pro_b","text":"qb6_7_pro_b --> Q.B6_7 Proportion - Total e-Books downloaded or accessed legally in the last 3 months (Rank 826)"}],"excludeFilters":{"qb6_7_pro_b":[" "]},"category":"Infringement","description":"Those who accessed all books legally dropped from 90.65% in 2013 to 88.09% in 2015, leading infringement levels for books, as these are measured by any illegal activity, to an increase from 9.45% in 2013 to 11.91 in 2015."} Those who accessed all books legally dropped from 90.65% in 2013 to 88.09% in 2015, leading infringement levels for books, as these are measured by any illegal activity, to an increase from 9.45% in 2013 to 11.91 in 2015. Infringement \N Book infringement - All illegal access {"title":"Book infringement - All illegal access","dataset":"wave4","qkeys":[{"qkeys":"qb6_7_pro_b","text":"qb6_7_pro_b --> Q.B6_7 Proportion - Total e-Books downloaded or accessed legally in the last 3 months (Rank 826)"}],"excludeFilters":{"qb6_7_pro_b":[" "]},"category":"Infringement","description":"The fraction of individuals who infringe by accessing books only illegally (100% illegal activity) increased from 4.60% in 2013 to 6.69% in 2015."} The fraction of individuals who infringe by accessing books only illegally (100% illegal activity) increased from 4.60% in 2013 to 6.69% in 2015. Infringement \N Film infringement - all illegal or legal? {"title":"Film infringement - all illegal or legal?","dataset":"wave4","qkeys":[{"qkeys":"qb4_7_pro_b2","text":"qb4_7_pro_b2 --> Q.B4_7B Proportion - Total films downloaded or streamed legally in the last 3 months (Including paid illegal) (Rank 122)"}],"excludeFilters":{"qb4_7_pro_b2":[" "]},"category":"Infringement","description":"When asked about legal consumption of film content, in 2013 a 82.59% of survey takers did not answer this question (because they chose not to, or because they did not report consuming film at all). Taking the survey sample as a whole, 11.63% of all survey respondents reported that all of their downloading was done from legal sources, while 3.7% of respondents admitted that all of their online consumption of film was illegal."} When asked about legal consumption of film content, in 2013 a 82.59% of survey takers did not answer this question (because they chose not to, or because they did not report consuming film at all). Taking the survey sample as a whole, 11.63% of all survey respondents reported that all of their downloading was done from legal sources, while 3.7% of respondents admitted that all of their online consumption of film was illegal. Infringement \N Film infringement - Some illegal consumption {"title":"Film infringement - Some illegal consumption","dataset":"wave4","qkeys":[{"qkeys":"qb4_7_pro_b2","text":"qb4_7_pro_b2 --> Q.B4_7B Proportion - Total films downloaded or streamed legally in the last 3 months (Including paid illegal) (Rank 122)"}],"excludeFilters":{"qb4_7_pro_b2":[" "]},"category":"Infringement","description":"In 2013 a 66.84% of respondents (survey takers who answered the survey) claimed their downloads of film were legal in this period, leaving a combined 33.16% who engaged in some illegal downloading behaviour, while 21.33% access film content only illegally."} In 2013 a 66.84% of respondents (survey takers who answered the survey) claimed their downloads of film were legal in this period, leaving a combined 33.16% who engaged in some illegal downloading behaviour, while 21.33% access film content only illegally. Infringement \N Film infringement - Always legal {"title":"Film infringement - Always legal","dataset":"wave5","qkeys":[{"qkeys":"qb4_7_pro_b2","text":"qb4_7_pro_b2 --> Q.B4_7B Proportion - Total films downloaded or streamed legally in the last 3 months (Including paid illegal) (Rank 122)"}],"excludeFilters":{"qb4_7_pro_b2":[" "]},"category":"Infringement","description":"In 2015 a 77% of respondents claim that their downloads were always legal, leaving a combined 23% of consumers who engaged in some illegal downloading of film during the period, while a 16.13% access film contact only illegaly."} In 2015 a 77% of respondents claim that their downloads were always legal, leaving a combined 23% of consumers who engaged in some illegal downloading of film during the period, while a 16.13% access film contact only illegaly. Infringement \N Film infringement - Never legal {"title":"Film infringement - Never legal","dataset":"wave5","qkeys":[{"qkeys":"qb4_7_pro_b2","text":"qb4_7_pro_b2 --> Q.B4_7B Proportion - Total films downloaded or streamed legally in the last 3 months (Including paid illegal) (Rank 122)"}],"excludeFilters":{"qb4_7_pro_b2":[" "]},"category":"Infringement","description":"Survey respondents who accessed none film content legally decreased from 202 in 2013 to 181 in 2015."} Survey respondents who accessed none film content legally decreased from 202 in 2013 to 181 in 2015. Infringement \N Internet Access at home by gender {"title":"Internet Access at home by gender","dataset":"wave4","qkeys":[{"qkeys":"qa_01","text":"qa_01 --> Access to the Internet at home on a computerlaptop (Rank 720)"},{"qkeys":"csex","text":"csex --> GENDER (Rank 622)"}],"category":"Internet Demography","description":"In 2013 a 50.18% of males and a 49.77% of females had access to the Internet at home on a computer or laptop.","includeFilters":{"qa_01":["Yes"]}} In 2013 a 50.18% of males and a 49.77% of females had access to the Internet at home on a computer or laptop. Internet Demography \N Internet Access at home by Opposing Social group {"title":"Internet Access at home by Opposing Social group","dataset":"wave4","qkeys":[{"qkeys":"qa_01","text":"qa_01 --> Access to the Internet at home on a computerlaptop (Rank 720)"},{"qkeys":"class5","text":"class5 --> SOCIAL CLASS (Rank 498)"}],"category":"Internet Demography","description":"The evolution of Internet access for the top (AB grade) and bottom (E grade) socio-economic group reveals that there is a consistent gap between the two which has not changed much over time.","includeFilters":{"qa_01":["Yes"],"class5":["AB","E"]}} The evolution of Internet access for the top (AB grade) and bottom (E grade) socio-economic group reveals that there is a consistent gap between the two which has not changed much over time. Internet Demography \N Internet Access at home by AB vs C1 {"title":"Internet Access at home by AB vs C1","dataset":"wave4","qkeys":[{"qkeys":"qa_01","text":"qa_01 --> Access to the Internet at home on a computerlaptop (Rank 720)"},{"qkeys":"class5","text":"class5 --> SOCIAL CLASS (Rank 498)"}],"category":"Internet Demography","description":"Surprisingly, Internet access at home is consistently slightly lower for the top (AB grade) compared to the next to the top (C1 grade) socio-economic group.","includeFilters":{"qa_01":["Yes"],"class5":["AB","C1"]}} Surprisingly, Internet access at home is consistently slightly lower for the top (AB grade) compared to the next to the top (C1 grade) socio-economic group. Internet Demography \N Internet Access at home by Ethnicity {"title":"Internet Access at home by Ethnicity","dataset":"wave5","qkeys":[{"qkeys":"ceth","text":"ceth --> ETHNICITY (Rank 2)"},{"qkeys":"break2_device2","text":"break2_device2 --> Mobile with Internet (Rank 491)"}],"category":"Internet Demography","description":"A 58.68% of white British and a 65.22% of Indians reported that they did not have mobile with Internet access in 2015."} A 58.68% of white British and a 65.22% of Indians reported that they did not have mobile with Internet access in 2015. Internet Demography \N Spending - TV - total spent by different groups {"title":"Spending - total spent by different groups","dataset":"wave5","qkeys":[{"qkeys":"qbx_1total","text":"qbx_1total --> Q.BX_1TOTAL (Combined files of interest) 3 month spent on Total (Rank 364)"}],"category":"Spending","description":"The fraction of individuals who spend nothing in total in the past 3 months increased from 31.85% to 34.32% between 2013 and 2015, while those who spend more than \\u00a3100 have declined from 22.58% to 20.51%."} The fraction of individuals who spend nothing in total on TV in the past 3 months increased from 31.85% to 34.32% between 2013 and 2015, while those who spend more than £100 have declined from 22.58% to 20.51%. Spending \N Spending - TV - Females VS Males {"title":"Spending - TV - Females VS Males","dataset":"wave5","qkeys":[{"qkeys":"csex","text":"csex --> GENDER (Rank 622)"},{"qkeys":"qbx_1total","text":"qbx_1total --> Q.BX_1TOTAL (Combined files of interest) 3 month spent on Total (Rank 364)"}],"includeFilters":{"qbx_1total":["Have not spent anything"]},"category":"Spending","description":"In 2013 a larger fraction of females 50.98% spent nothing in TV services compared to males 49.02%. Same happened in 2015, females 51.07%; males 48.93% "} In 2013 a larger fraction of females 50.98% spent nothing in TV services compared to males 49.02%. Same happened in 2015, females 51.07%; males 48.93% Spending \N Spending - TV - Social class differences {"title":"Spending - TV - Social class differences","dataset":"wave5","qkeys":[{"qkeys":"qbx_1total","text":"qbx_1total --> Q.BX_1TOTAL (Combined files of interest) 3 month spent on Total (Rank 364)"},{"qkeys":"class5","text":"class5 --> SOCIAL CLASS (Rank 498)"}],"includeFilters":{"qbx_1total":["Have not spent anything"]},"excludeFilters":{"class5":[" "]},"category":"Spending","description":"Between 2013 and 2015 the fraction of individuals who spend nothing in total on TV in the past 3 months decreased for almost every socio-economic group apart from the working class group (D grade)."} Between 2013 and 2015 the fraction of individuals who spend nothing in total on TV in the past 3 months decreased for almost every socio-economic group apart from the working class group (D grade). Spending \N Digital generation - Young spenders {"title":"Digital generation - Young spenders","dataset":"wave4","qkeys":[{"qkeys":"cage2","text":"cage2 --> AGE (Rank 593)"},{"qkeys":"qbx_1total","text":"qbx_1total --> Q.BX_1TOTAL (Combined files of interest) 3 month spent on Total (Rank 364)"}],"includeFilters":{"qbx_1total":["\\u00a3100+"]},"category":"Digital Generation","description":"In 2013 individuals of age 12-15 form the largest fraction (29.05%) of top spenders (spending more than \\u00a3100 in past 3 months)."} In 2013 individuals of age 12-15 form the largest fraction (29.05%) of top spenders (spending more than £100 in past 3 months). Digital Generation \N Digital generation - Young infringers {"title":"Digital generation - Young infringers","dataset":"wave5","qkeys":[{"qkeys":"cage2","text":"cage2 --> AGE (Rank 593)"},{"qkeys":"qbx_7_pro_ab","text":"qbx_7_pro_ab --> Q.Bx_7 (Combined files of interest) Proportion - total content types of interest downloaded or accessed legally in the last 3 months (presuming paid as legal) (Rank 780)"}],"includeFilters":{"qbx_7_pro_ab":["None"]},"excludeFilters":{"qbx_7_pro_ab":[" "]},"category":"Digital Generation","description":"Individuals of age 12-15 form the largest fraction of infringers (none legal download in past 3 months). However, this fraction decreased from 31.88% in 2013 to 29.37% in 2015"} Individuals of age 12-15 form the largest fraction of infringers (none legal download in past 3 months). However, this fraction decreased from 31.88% in 2013 to 29.37% in 2015 Digital Generation \N Digital generation - Young Legal consumers {"title":"Digital generation - Young Legal consumers","dataset":"wave4","qkeys":[{"qkeys":"cage2","text":"cage2 --> AGE (Rank 593)"},{"qkeys":"qbx_7_pro_ab","text":"qbx_7_pro_ab --> Q.Bx_7 (Combined files of interest) Proportion - total content types of interest downloaded or accessed legally in the last 3 months (presuming paid as legal) (Rank 780)"}],"includeFilters":{"qbx_7_pro_ab":["100%"]},"excludeFilters":{"qbx_7_pro_ab":[" "]},"category":"Digital Generation","description":"Surprisingly, individuals of age 12-15 form the largest fraction of totally legal consumers (100% legal downloads in past 3 months). However, this fraction decreased from 26.6% in 2013 to 25.48% in 2015."} Surprisingly, individuals of age 12-15 form the largest fraction of totally legal consumers (100% legal downloads in past 3 months). However, this fraction decreased from 26.6% in 2013 to 25.48% in 2015. Digital Generation \N Internet Access - Different types {"title":"Internet Access - Different types","dataset":"wave5","qkeys":[{"qkeys":"qbx_7_pro_ab","text":"qbx_7_pro_ab --> Q.Bx_7 (Combined files of interest) Proportion - total content types of interest downloaded or accessed legally in the last 3 months (presuming paid as legal) (Rank 780)"},{"qkeys":"qa_03","text":"qa_03 --> Access to the Internet at home on a games console (Rank 702)"},{"qkeys":"qa_04","text":"qa_04 --> Internet at home through your TV screen via a computer (Rank 644)"},{"qkeys":"qa_05","text":"qa_05 --> Internet at home directly through your TV set i.e. SmartConnected TV) (Rank 489)"},{"qkeys":"qa_06","text":"qa_06 --> Access to the Internet via a mobile phone (Rank 446)"},{"qkeys":"qa_02","text":"qa_02 --> Access to the Internet at work on a computerlaptop (Rank 610)"},{"qkeys":"qa_01","text":"qa_01 --> Access to the Internet at home on a computerlaptop (Rank 720)"}],"excludeFilters":{"qbx_7_pro_ab":[" "]},"category":"other","description":"How do people connect to the internet? Here we have a number of fields selected to show which devices are the favourites when accessing the Web."} How do people connect to the internet? Here we have a number of fields selected to show which devices are the favourites when accessing the Web. other \N Total level of infringement - demo {"title":"Total level of infringement - demo","dataset":"wave5","qkeys":[{"qkeys":"qa_07","text":"qa_07 --> Access to the internet on a tablet computer e.g. iPad (Rank 130)"},{"qkeys":"q1b05","text":"q1b05 --> Yes to films (full length) (Rank 134)"},{"qkeys":"qa_01","text":"qa_01 --> Access to the Internet at home on a computerlaptop (Rank 720)"},{"qkeys":"qa_06","text":"qa_06 --> Access to the Internet via a mobile phone (Rank 446)"},{"qkeys":"qa_14","text":"qa_14 --> An e-mail address at home (Rank 34)"},{"qkeys":"qa_13","text":"qa_13 --> Other Internet access (Rank 24)"},{"qkeys":"qa_09","text":"qa_09 --> Access to the Internet at schoolcollege university on a computer (Rank 636)"},{"qkeys":"qa_10","text":"qa_10 --> Internet access from a library on a computer (Rank 442)"},{"qkeys":"qb2_2a","text":"qb2_2a --> Q.B2_2A Frequency of downloading to Video Games (Rank 480)"},{"qkeys":"qb3_2a","text":"qb3_2a --> Q.B3_2A Frequency of downloading to Computer Software (Rank 456)"},{"qkeys":"qb4_2b","text":"qb4_2b --> Q.B4_2B Frequency of streaming to Films (Rank 59)"}],"category":"Other","description":"The overall level of infringement, as this is measured by the fraction of individuals who access content only illegally (100% illegal activity) increased from 7.05% in 2013 to 9.43% in 2015 or from 206 respondents in 2013 to 268 in 2015 (sample of respondents=2921)."} The overall level of infringement, as this is measured by the fraction of individuals who access content only illegally (100% illegal activity) increased from 7.05% in 2013 to 9.43% in 2015 or from 206 respondents in 2013 to 268 in 2015 (sample of respondents=2921). Other \N Music price sensitivity {"title":"Music price sensitivity","dataset":"wave6","qkeys":[{"qkeys":"qb1_1total","text":"qb1_1total --> Q.B1_1TOTAL 3 month spent on Music total (Rank 653)"},{"qkeys":"qb1_8b_01a","text":"qb1_8b_01a --> Q.B1_8B_01 Price Sensitivity to Music Subscription service to \\u00a33 (Rank 501)"},{"qkeys":"qb1_8b_02a","text":"qb1_8b_02a --> Q.B1_8B_02 Price Sensitivity to Music Subscription service to \\u00a35 (Rank 554)"},{"qkeys":"qb1_8b_03a","text":"qb1_8b_03a --> Q.B1_8B_03 Price Sensitivity to Music Subscription service to \\u00a37.50 (Rank 611)"},{"qkeys":"qb1_8b_04a","text":"qb1_8b_04a --> Q.B1_8B_04 Price Sensitivity to Music Subscription service to \\u00a310 (Rank 744)"},{"qkeys":"qb1_8b_05a","text":"qb1_8b_05a --> Q.B1_8B_05 Price Sensitivity to Music Subscription service to \\u00a312.50 (Rank 735)"}],"excludeFilters":{"qb1_8b_03a":[" "]},"category":"Other","description":"If price for music subscriptions are \\u00a35 or under 47% to 62% of the customers will be likely or very likely to sign up. (pop: 1390)","screenshot":"uploads\\/47a9e7a68f1ee9d844e19910fa06ea90.png"} If price for music subscriptions are £5 or under 47% to 62% of the customers will be likely or very likely to sign up. (pop: 1390) Other uploads/47a9e7a68f1ee9d844e19910fa06ea90.png Total Spent On Video Games {"title":"Total Spent On Video Games","dataset":"wave5","qkeys":[{"qkeys":"qb2_1total","text":"qb2_1total --> Q.B2_1TOTAL 3 month Spend - Video Games total (Rank 818)"}],"category":"Other","description":"The percentage of the population spending anything on reported here is about 19.38% for 2015 (wave 5), which contrasts other sources reporting around a 34% of the population spending anything on games. Sources: http:\\/\\/ukie.org.uk\\/sites\\/default\\/files\\/UK%20Games%20Industry%20Fact%20Sheet%2004%20November%202016.pdf","screenshot":"uploads\\/cea995633c2f1943ec9ebfd2d16a8753.jpeg"} The percentage of the population spending anything on reported here is about 19.38% for 2015 (wave 5), which contrasts other sources reporting around a 34% of the population spending anything on games. Sources: http://ukie.org.uk/sites/default/files/UK%20Games%20Industry%20Fact%20Sheet%2004%20November%202016.pdf Other uploads/cea995633c2f1943ec9ebfd2d16a8753.jpeg Expenditure by industry and by age {"title":"Expenditure by industry and by age","dataset":"wave5","qkeys":[{"qkeys":"cage6","text":"cage6 --> AGE (Rank 650)"},{"qkeys":"qb1_1total","text":"qb1_1total --> Q.B1_1TOTAL 3 month Spend - Music total (Rank 653)"},{"qkeys":"qb2_1total","text":"qb2_1total --> Q.B2_1TOTAL 3 month Spend - Video Games total (Rank 818)"},{"qkeys":"qb3_1total","text":"qb3_1total --> Q.B3_1TOTAL 3 month Spend - Computer Software total (Rank 507)"},{"qkeys":"qb4_1total","text":"qb4_1total --> Q.B4_1TOTAL 3 month Spend - Films total (Rank 587)"},{"qkeys":"qb5_1total","text":"qb5_1total --> Q.B5_1TOTAL 3 month Spend - TV programmes total (Rank 731)"},{"qkeys":"qb6_1total","text":"qb6_1total --> Q.B6_1TOTAL 3 month Spend - Books total (Rank 596)"}],"category":"Other","description":"Expenditure on each industry by age groups. ","screenshot":"uploads\\/2567a419d19d3466f5430e06cf4820ef.jpeg"} Expenditure on each industry by age groups. Other uploads/2567a419d19d3466f5430e06cf4820ef.jpeg Music price sensitivity - Likelihood {"title":"Music price sensitivity - Likelihood","dataset":"wave6","qkeys":[{"qkeys":"qb1_1total","text":"qb1_1total --> Q.B1_1TOTAL 3 month spent on Music total (Rank 653)"},{"qkeys":"qb1_8b_01a","text":"qb1_8b_01a --> Q.B1_8B_01 Price Sensitivity to Music Subscription service to \\u00a33 (Rank 501)"},{"qkeys":"qb1_8b_02a","text":"qb1_8b_02a --> Q.B1_8B_02 Price Sensitivity to Music Subscription service to \\u00a35 (Rank 554)"},{"qkeys":"qb1_8b_03a","text":"qb1_8b_03a --> Q.B1_8B_03 Price Sensitivity to Music Subscription service to \\u00a37.50 (Rank 611)"},{"qkeys":"qb1_8b_04a","text":"qb1_8b_04a --> Q.B1_8B_04 Price Sensitivity to Music Subscription service to \\u00a310 (Rank 744)"},{"qkeys":"qb1_8b_05a","text":"qb1_8b_05a --> Q.B1_8B_05 Price Sensitivity to Music Subscription service to \\u00a312.50 (Rank 735)"}],"includeFilters":{"qb1_1total":["Have not spent anything"]},"excludeFilters":{"qb1_8b_01a":[" "]},"category":"Other","description":"Of all people that has not spent anything in music, 85% did not answer whether they would be likely or unlikely to join a subscription service. However of those who answered (483) 44.31% and 28.15% would be likely to pay for a \\u00a33 and \\u00a35 music subscription service.","screenshot":"uploads\\/47fd3f83b739d85db11a3716147634f2.png"} Of all people that has not spent anything in music, 85% did not answer whether they would be likely or unlikely to join a subscription service. However of those who answered (483) 44.31% and 28.15% would be likely to pay for a £3 and £5 music subscription service. Other uploads/47fd3f83b739d85db11a3716147634f2.png Consumption of media for all industries {"title":"Consumption of media for all industries","dataset":"wave6","qkeys":[{"qkeys":"qb1_2a","text":"qb1_2a --> Q.B1_2A Frequency of downloading - Music (Rank 158)"},{"qkeys":"qb1_2b","text":"qb1_2b --> Q.B1_2B Frequency of streaming - Music (Rank 125)"},{"qkeys":"qb2_2a","text":"qb2_2a --> Q.B2_2A Frequency of downloading - Video Games (Rank 480)"},{"qkeys":"qb2_2b","text":"qb2_2b --> Q.B2_2B Frequency of accessing - Video Games (Rank 462)"},{"qkeys":"qb4_2a","text":"qb4_2a --> Q.B4_2A Frequency of downloading - Films (Rank 162)"},{"qkeys":"qb4_2b","text":"qb4_2b --> Q.B4_2B Frequency of streaming - Films (Rank 59)"},{"qkeys":"qb5_2a","text":"qb5_2a --> Q.B5_2A Frequency of downloading - TV programmes (Rank 133)"},{"qkeys":"qb5_2b","text":"qb5_2b --> Q.B5_2B Frequency of streaming - TV programmes (Rank 71)"},{"qkeys":"qb6_2a","text":"qb6_2a --> Q.B6_2A Frequency of downloading - e-Books (Rank 243)"},{"qkeys":"qb6_2b","text":"qb6_2b --> Q.B6_2B Frequency of accessing - e-Books (Rank 584)"}],"category":"Other","description":"Here we have the frequency of consumption (download and access) for each of the media types on the OCI tracker.","screenshot":"uploads\\/38896e6d58df1b16de9775007c41ecfa.jpeg"} Here we have the frequency of consumption (download and access) for each of the media types on the OCI tracker. Other uploads/38896e6d58df1b16de9775007c41ecfa.jpeg Film infringement - all illegal or legal? {"title":"Film infringement - all illegal or legal?","dataset":"wave4","qkeys":[{"qkeys":"q1a1","text":"q1a1 --> Yes - music tracks or albums (excluding online radio stations) : Q.1A Files ever downloaded (Rank undefined)"},{"qkeys":"q1c1","text":"q1c1 --> Yes - music tracks or albums (excluding online radio stations) : Q.1C Files ever shared (Rank undefined)"}],"excludeFilters":{"qb4_7_pro_b2":[" "]},"category":"","description":"When asked about legal consumption of film content, in 2013 a 82.59% of survey takers did not answer this question (because they chose not to, or because they did not report consuming film at all). Taking the survey sample as a whole, 11.63% of all survey respondents reported that all of their downloading was done from legal sources, while 3.7% of respondents admitted that all of their online consumption of film was illegal.","screenshot":"uploads\\/941eb81bf80f0be55e2f1aead593e91a.octet-stream"} When asked about legal consumption of film content, in 2013 a 82.59% of survey takers did not answer this question (because they chose not to, or because they did not report consuming film at all). Taking the survey sample as a whole, 11.63% of all survey respondents reported that all of their downloading was done from legal sources, while 3.7% of respondents admitted that all of their online consumption of film was illegal. uploads/941eb81bf80f0be55e2f1aead593e91a.octet-stream \. -- -- TOC entry 2162 (class 0 OID 16472) -- Dependencies: 185 -- Data for Name: wave1; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY wave1 (qa_01, qa_02, qa_03, qa_04, qa_05, qa_06, qa_07, qa_08, qa_09, qa_10, qa_11, qa_12, qa_13, qa_14, qa_15, qa_16, qa_17, "@all", qb_01, qb_02, qb_03, qb_04, qb_05, qb_06, qb_07, qb_08, qb_09, qb_10, qb_11, qb_12, qc_01, qc_02, qc_03, qc_04, qc_05, qc_06, qc_07, qc_08, qc_09, qc_10, qc_11, qc_12, qc_13, qd, q1a01, q1a02, q1a03, q1a04, q1a05, q1a06, q1a07, q1a08, q1a09, q1a10, q1a11, q1b01, q1b02, q1b03, q1b04, q1b05, q1b06, q1b07, q1b08, q1b09, q1b10, q1b11, q1c01, q1c02, q1c03, q1c04, q1c05, q1c06, q1c07, q1c08, q1c09, q1c10, q1c11, q2a01, q2a02, q2a03, q2a04, q2a05, q2a06, q2a07, q2a08, q2a09, q2a10, q2a11, q2b01, q2b02, q2b03, q2b04, q2b05, q2b06, q2b07, q2b08, q2b09, q2b10, q2b11, q2c01, q2c02, q2c03, q2c04, q2c05, q2c06, q2c07, q2c08, q2c09, q2c10, q2c11, q3a1, q3a2, q3a3, q3a4, q3a5, q3a6, q3a7, q3a8, q3b1, q3b2, q3b3, q3b4, q3b5, q3b6, q3b7, q3b8, q3c1, q3c2, q3c3, q3c4, q3c5, q3c6, q3c7, q3c8, qb11tota, qb11otha, qb1_1ai, qb1_1aii, qb11aii1, qb1_1aiv, qb1_1ava, qb1_1avb, qb1_2a, qb1_2b, qb1_2c, qb13tota, qb1_3a, qb1_3b, qb1_3ab, qb1_5a, qb15a_pr, qb1_6pro, qb1_5b, qb15b_pr, qb1_7, qb17proa, qb17prob, qb1_3c1, qb1_3c2, qb1_3c12, qb1_3d, qb18a_01, qb18a_02, qb18a_03, qb18a_04, qb18a_05, qb18a011, qb18a021, qb18a031, qb18a041, qb18a051, qb18a012, qb18a022, qb18a032, qb18a042, qb18a052, qb18b_01, qb18b_02, qb18b_03, qb18b_04, qb18b_05, qb18b011, qb18b021, qb18b031, qb18b041, qb18b051, qb18b012, qb18b022, qb18b032, qb18b042, qb18b052, qb21tota, qb2_1ai, qb2_1aii, qb2_2a, qb2_2b, qb2_2c, qb23tota, qb2_3a, qb2_3b, qb2_3ab, qb2_5a, qb25a_pr, qb2_6pro, qb2_5b, qb25b_pr, qb2_7, qb27proa, qb27prob, qb2_3c, qb2_3d, qb31tota, qb3_1ai, qb3_1aii, qb3_2a, qb3_2b, qb3_2c, qb33tota, qb3_3a, qb3_3b, qb3_3ab, qb3_5a, qb35a_pr, qb3_6pro, qb3_5b, qb35b_pr, qb3_7, qb37proa, qb37prob, qb3_3c, qb3_3d, qb41tota, qb41otha, qb4_1ai, qb4_1aii, qb41aii1, qb4_1aiv, qb4_1av, qb4_1avi, qb4_2a, qb4_2b, qb4_2c, qb43tota, qb4_3a, qb4_3b, qb4_3ab, qb4_5a, qb45a_pr, qb4_6pro, qb4_5b, qb45b_pr, qb4_5c, qb45c_pr, qb4_7, qb47proa, qb47prob, qb4_3c, qb4_3d, qb48a_01, qb48a_02, qb48a_03, qb48a_04, qb48a_05, qb48a011, qb48a021, qb48a031, qb48a041, qb48a051, qb48a012, qb48a022, qb48a032, qb48a042, qb48a052, qb48b_01, qb48b_02, qb48b_03, qb48b_04, qb48b_05, qb48b011, qb48b021, qb48b031, qb48b041, qb48b051, qb48b012, qb48b022, qb48b032, qb48b042, qb48b052, qb51tota, qb5_1ai, qb5_1aii, qb51aii1, qb5_2a, qb5_2b, qb5_2c, qb53tota, qb5_3a, qb5_3b, qb5_3ab, qb5_5a, qb55a_pr, qb5_6pro, qb5_5b, qb55b_pr, qb5_7, qb57proa, qb57prob, qb5_3c, qb5_3d, qb61tota, qb6_1ai, qb6_1aii, qb6_2a, qb6_2b, qb6_2c, qb63tota, qb6_3a, qb6_3b, qb6_3ab, qb6_5a, qb65a_pr, qb6_6pro, qb6_5b, qb65b_pr, qb6_7, qb67proa, qb67prob, qb6_3c, qb6_3d, qb68a_01, qb68a_02, qb68a_03, qb68a_04, qb68a_05, qb68a011, qb68a021, qb68a031, qb68a041, qb68a051, qb68a012, qb68a022, qb68a032, qb68a042, qb68a052, qb68b_01, qb68b_02, qb68b_03, qb68b_04, qb68b_05, qb68b011, qb68b021, qb68b031, qb68b041, qb68b051, qb68b012, qb68b022, qb68b032, qb68b042, qb68b052, qbx1tota, qbx_ai, qbx_aii, qbx_aiii, qbx_aiv, qbx_av, qbx3tota, qbx3a_to, qbx3b_to, qbx3abto, qbx5a_to, qbx5a_pr, qbx_6, qbx_6pro, qbx5b_to, qbx5b_pr, qbx_7a_a, qbx7proa, qbx_7a_b, qbx7prob, qbx_3c, qbx_3d, q4a, q4b, q4c, q4d, q4e, q4f, q4g, q4h, q501, q502, q503, q504, q505, q506, q507, q508, q509, q510, q511, q512, q513, q601, q602, q603, q604, q605, q606, q607, q608, q609, q610, q611, q612, q613, q614, q615, q616, q617, q618, q619, q620, q701, q702, q703, q704, q705, q706, q707, q708, q709, q710, q711, q712, q713, q714, q715, q801, q802, q803, q804, q805, q806, q807, q808, q809, q810, q811, q812, q813, q814, q815, q816, q817, q818, q901, q902, q903, q904, q905, q906, q907, q908, q909, q910, q10ext01, q10ext02, q10ext03, q10ext04, q10ext05, q10ext06, q10ext07, q10ext08, q10ext09, q10ext10, q10ext11, q10ext12, q10ext13, q10ext14, q10ext15, q10ext16, q10ext17, q10ext18, q10ext19, q10ext20, q10ext21, q10ext22, q10ext23, q10ext24, q10ext25, q10ext26, q10ex101, q10ex102, q10ex103, q10ex104, q10ex105, q10ex106, q10ex107, q10ex108, q10ex109, q10ex110, q10ex111, q10ex112, q10ex113, q10ex114, q10ex115, q10ex116, q10ex117, q10ex118, q10ex119, q10ex120, q11a, q11b01, q11b02, q11b03, q11b04, q11b05, q11b06, q11b07, q11b08, q11b09, q11b10, q11b11, q11b12, q11b13, q11b14, q11b15, q11b16, q11b17, q11b18, q11b19, q11b20, q11b21, csex, cage2, cage6, cage8, class3, class41, class42, class43, class44, class45, class46, class5, cmari1, cwork1, cwork5, child2, child51, child52, child53, child54, child55, chsex1, chsex2, cads, chhs, satcab81, satcab82, satcab83, cphone5, cten, rural2, country1, govreg12, govreg3, ceth, ceth3, bremus01, bremus02, bremus03, bremus04, bremus05, bremus06, bremus07, bremus08, bremus09, bremus10, bremus11, bremus12, bremus13, brvide01, brvide02, brvide03, brvide04, brvide05, brvide06, brvide07, brvide08, brvide09, brvide10, brvide11, brvide12, brvide13, bresof01, bresof02, bresof03, bresof04, bresof05, bresof06, bresof07, bresof08, bresof09, bresof10, bresof11, bresof12, bresof13, brefil01, brefil02, brefil03, brefil04, brefil05, brefil06, brefil07, brefil08, brefil09, brefil10, brefil11, brefil12, brefil13, brtvpr01, brtvpr02, brtvpr03, brtvpr04, brtvpr05, brtvpr06, brtvpr07, brtvpr08, brtvpr09, brtvpr10, brtvpr11, brtvpr12, brtvpr13, breboo01, breboo02, breboo03, breboo04, breboo05, breboo06, breboo07, breboo08, breboo09, breboo10, breboo11, breboo12, breboo13, brbcom01, brbcom02, brbcom03, brbcom04, brbcom05, brbcom06, brbcom07, brbcom08, brbcom09, brbcom10, brbcom11, brbcom12, brbcom13, bremetho, cexage, qb1totra, qb11aira, qb1aira1, qb1aiira, qb1aira2, qb11avra, qb1totr1, qb21aira, qb1aira3, qb1totr2, qb31aira, qb1aira4, qb1totr3, qb41aira, qb1aira5, qb1aira6, qb1aira7, qb41avra, qb1avra1, qb1totr4, qb51aira, qb1aira8, qb1aira9, qb1totr5, qb61aira, qb1air10, qb3totra, qb3totr1, qb3totr2, qb3totr3, qb3totr4, qb3totr5, qb13a_ra, qb23a_ra, qb33a_ra, qb43a_ra, qb53a_ra, qb63a_ra, qb13b_ra, qb23b_ra, qb33b_ra, qb43b_ra, qb53b_ra, qb63b_ra, qb13abra, qb23abra, qb33abra, qb43abra, qb53abra, qb63abra, qb15a_ra, qb25a_ra, qb35a_ra, qb45a_ra, qb55a_ra, qb65a_ra, qb1_6raw, qb2_6raw, qb3_6raw, qb4_6raw, qb5_6raw, qb6_6raw, qb15b_ra, qb25b_ra, qb35b_ra, qb45b_ra, qb55b_ra, qb65b_ra, qb45c_ra, qb1_7raw, qb2_7raw, qb3_7raw, qb4_7raw, qb5_7raw, qb6_7raw, qb13c1ra, qb13c2ra, qb3c1cra, qb23c_ra, qb33c_ra, qb43c_ra, qb53c_ra, qb63c_ra, qb13d_ra, qb23d_ra, qb33d_ra, qb43d_ra, qb53d_ra, qb63d_ra, qb5aprra, qb6_prra, qb5bprra, qb7pfrer, qb7pralr, qb5aprr1, qb6prra1, qb5bprr1, qbprfrr1, qbpralr1, qb5aprr2, qb6prra2, qb5bprr2, qbprfrr2, qbpralr2, qb5aprr3, qb6prra3, qb5bprr3, qb5cprra, qbprfrr3, qbpralr3, qb5aprr4, qb6prra4, qb5bprr4, qbprfrr4, qbpralr4, qb5aprr5, qb6prra5, qb5bprr5, qbprfrr5, qbpralr5, qb1totr6, qb1physr, qb1onpur, qb1onsur, qb1rentr, qb1relar, qb3sumra, qbx3a_ra, qbx3b_ra, qbx3abra, qb5anura, qb65aprr, qb66prra, qb5bnura, qb65bprr, qb5frnur, qb7numra, qb6pralr, qb7prfrr, qbx3c_ra, qbx3d_ra, numbhh, wmid1, "Weight_1", uniq_id) FROM stdin; No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 1 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 7 2 10.4156313 10.4156313 3029 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Being bought on mortgage Urban England South West South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.4595022 11.4595022 3031 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.0860023 12.0860023 3035 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 31 to 40 11 to 20 Have not spent anything 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None None Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No No No No No No No Yes No No No No No No No No No No No No Not at all confident (1) No No No No No No Yes No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAPI Adults 72 3600 0 1800 1800 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3600 1800 0 0 0 1800 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2 14.2350197 14.2350197 3036 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 11 to 20 None 11 to 20 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 20 2 15.4505291 15.4505291 3037 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.6729898 10.6729898 3038 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North West North Any other Black Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 399 399 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 399 399 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 10.2134066 10.2134066 3039 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No Yes No 3 3 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 51 to 100 Have not spent anything 11 to 20 None 11 to 20 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything 20 to 30 21 to 30 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Strongly disagree (-4) Slightly disagree (-2) Don't know Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 1 1 No Yes No Phone Other Urban England East of England Midlands White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 65 2900 2900 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 7000 0 1 0 0 0 2 20 0 0 0 0 0 0 1 0 0 0 2 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 9900 7000 0 0 0 2900 23 0 3 3 0 0 0 0 0 3 3 100 100 0 20 1 14.785223 14.785223 3042 No Yes No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.9660501 10.9660501 3045 Yes Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban England South East South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 620 0 0 0 0 0 620 0 0 0 0 1300 1300 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1920 1300 0 0 620 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 16.2670212 16.2670212 3047 No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes Yes Phone Rented from private landlord Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 200 0 200 0 0 0 0 0 0 0 0 600 600 0 0 0 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 11.4595022 11.4595022 3048 Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No Yes No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 100+ 51 to 100 51 to 100 Have not spent anything 41 to 50 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything Have not spent anything 51 to 100 1 to 10 1 to 10 75% to 99% Slightly agree (2) Don't know Don't know Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 11000 6000 0 5000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 1 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 14000 8000 0 0 0 6000 5 0 0 0 0 0 80 0 0 0 0 0 0 0 5 2 15.6616735 15.6616735 3050 Yes No No No No No No No No No No No No Yes No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No No No No No No No No No No Yes Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes Yes No Phone Owned outright by household Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.2633934 11.2633934 3054 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No Yes No Yes No Yes Yes No No No No No No No No No Not particularly confident (2) No No No No No Yes No No No No No No No No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 2 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 7 2 15.050293 15.050293 3082 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Don't know Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No Yes No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 1200 0 0 0 0 1200 0 0 0 0 0 2000 2000 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3200 2000 0 1200 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 14.2350197 14.2350197 3091 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Rented from local authority Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200 200 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200 200 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1 15.6962919 15.6962919 3092 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No Yes No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 600 0 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 0 0 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.2782469 12.2782469 3094 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 100+ 100+ Have not spent anything 100+ Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 11 to 20 Have not spent anything Have not spent anything Have not spent anything 100+ 1 to 10 None None Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Don't know Strongly agree (4) Don't know Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No Yes No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 11000 0 11000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13000 2000 0 0 0 11000 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 14.7207117 14.7207117 3114 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 41 to 50 None 41 to 50 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No No phone Owned outright by household Urban England East of England Midlands Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 2000 0 0 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 45 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 3500 0 0 0 0 47 0 0 0 0 0 0 0 0 0 0 0 0 0 47 2 12.0860023 12.0860023 3122 Yes No No No No Yes No No No No No Yes No Yes No No No Yes No No No No Yes No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 Yes Yes No Phone Owned outright by household Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 1500 0 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 15 1 16.2670212 16.2670212 3133 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 13.2972794 13.2972794 3136 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.6729898 10.6729898 3161 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No Yes No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Don't know Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Don't know Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No Yes No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 14.5867491 14.5867491 3162 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.6729898 10.6729898 3170 Yes No No No No Yes No No No No No Yes No Yes No No No Yes No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Don't know Slightly agree (2) Strongly disagree (-4) Slightly disagree (-2) Neither agree nor disagree (0) Don't know Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 4 3 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1500 1500 0 0 0 0 7 0 4 4 0 0 0 0 0 4 4 100 100 0 3 2 16.2670212 16.2670212 3173 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban Scotland Scotland North Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.5813074 10.5813074 3202 Yes No No No No No No No No Yes No No No Yes No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly disagree (-4) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.28969 15.28969 3206 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Don't know Strongly agree (4) No Yes No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Rented from local authority Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 2000 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 2 14.7207117 14.7207117 3208 No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 10.1256704 10.1256704 3217 No No No No No No No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 2 2 Yes Yes No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.2782469 12.2782469 3218 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.5813074 10.5813074 3219 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.5813074 10.5813074 3220 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No Yes No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.4614468 14.4614468 3223 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 700 700 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 700 700 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 14.4614468 14.4614468 3224 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Slightly agree (2) Don't know Slightly agree (2) No No No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.4614468 14.4614468 3226 Yes No No No No No No No No No No No No Yes No No No Yes No No No No Yes No No No No No No No No Yes Yes No Yes No No No No No No No 2-4 days a week (156) No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Slightly disagree (-2) Don't know Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes Yes No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 1000 1000 0 0 0 0 0 4 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 2000 1000 1000 0 0 0 4 2 0 2 2 100 0 0 0 0 0 100 0 0 2 2 15.28969 15.28969 3229 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly disagree (-4) Don't know Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from private landlord Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 15.0204029 15.0204029 3239 No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) No No No No No No No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Rented from local authority Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9000 9000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9000 9000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 10.1256704 10.1256704 3245 No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Not married Not working Retired None No Yes No No No No No 1 1 No No Yes Phone Rented from local authority Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.5813074 10.5813074 3246 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 None None Strongly agree (4) Don't know Strongly agree (4) Don't know Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Rented from private landlord Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 900 0 0 900 0 0 0 0 0 0 0 0 500 0 0 0 0 0 500 0 0 0 0 0 0 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1400 900 0 0 500 0 11 0 0 0 0 0 0 0 0 0 0 0 0 0 11 1 10.3072042 10.3072042 3247 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No No phone Rented from local authority Rural Scotland Scotland North Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.5813074 10.5813074 3259 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Rented from local authority Rural Scotland Scotland North Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.5813074 10.5813074 3262 No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No No Yes No phone Rented from local authority Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.2782469 12.2782469 3263 Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No Yes No No No No No No No No No No No No Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Rented from local authority Rural Scotland Scotland North Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1700 1700 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1700 1700 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 10.1256704 10.1256704 3264 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.2782469 12.2782469 3267 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No 2-3 times a month (30) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Yes No No No No No No Yes No No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Rented from local authority Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.1726933 12.1726933 3269 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Rented from local authority Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.6729898 10.6729898 3271 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No 2-3 times a month (30) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Neither agree nor disagree (0) Don't know Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No Not at all confident (1) No No No No No No No No No No No No Yes No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 5 5 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 10 0 5 5 0 0 0 0 0 5 0 0 0 0 5 1 15.5613527 15.5613527 3289 No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 41 to 50 20 to 30 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 1400 0 0 0 0 0 1400 0 0 0 0 3000 3000 0 0 0 0 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4400 3000 0 0 1400 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 9 1 14.9822664 14.9822664 3291 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Not married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Rented from local authority Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.6729898 10.6729898 3292 No No No No No No No No No No No No No Yes No No No No Yes No No No Yes No Yes No No No No Yes No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 11 to 20 None 11 to 20 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 3 3 Yes Yes No Phone Other Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 3 11.851346 11.851346 3295 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.6729898 10.6729898 3303 Yes Yes No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Rural England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 10.396512 10.396512 3304 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly disagree (-4) Don't know Strongly disagree (-4) Slightly agree (2) Don't know Strongly agree (4) Don't know Don't know No No No No No No No No No No Yes No No No No No No No No No Not at all confident (1) No No No No No Yes No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.063817 12.063817 3308 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No Yes No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.063817 12.063817 3309 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from private landlord Rural England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.6729898 10.6729898 3311 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No No phone Rented from private landlord Rural England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.3846331 12.3846331 3312 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.8322945 15.8322945 3318 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Rented from private landlord Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.3846331 12.3846331 3320 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Slightly agree (2) Slightly agree (2) Don't know Strongly agree (4) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAPI Adults 66 50 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300 300 0 1 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 350 350 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1 10.396512 10.396512 3321 No Yes No No No No No No No No No No No Yes No No No No No Yes No No Yes No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes Yes No No phone Owned outright by household Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 9 9 0 1500 0 0 0 0 0 1500 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1509 9 0 0 1500 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 10.2134066 10.2134066 3323 No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Rented from local authority Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 11.851346 11.851346 3330 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.3846331 12.3846331 3339 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Rented from local authority Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 10.6729898 10.6729898 3340 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from private landlord Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.6729898 10.6729898 3351 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Rented from local authority Urban Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9.45807743 9.45807743 3352 No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No Yes No Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No Yes Yes No No No Yes No Yes No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No No phone Rented from local authority Urban Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9.21307182 9.21307182 3355 Yes No No No No Yes No No No No No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 11 to 20 None 11 to 20 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Slightly disagree (-2) Don't know Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 3 3 No Yes No Phone Owned outright by household Urban England South East South White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 3 15.6616735 15.6616735 3375 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No No phone Rented from private landlord Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 11.4595022 11.4595022 3377 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Don't know Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1400 1400 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1400 1400 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 15.9424572 15.9424572 3378 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Strongly disagree (-4) Slightly agree (2) Slightly disagree (-2) Don't know Strongly agree (4) Don't know Don't know Don't know No No No No No No No No No Yes No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Being bought on mortgage Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 5000 5000 0 2000 0 0 0 0 0 2000 0 0 0 0 1899 1899 0 0 0 2 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8899 6899 0 0 2000 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 16.2670212 16.2670212 3379 Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No 2-4 days a week (156) No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything 51 to 100 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything 51 to 100 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None None Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Slightly confident (3) No No Yes No No No No No No No No No No Yes No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAPI Adults 72 0 0 0 0 0 0 0 0 0 9000 0 9000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9000 0 9000 0 0 0 1 1 0 1 1 100 0 0 0 0 0 100 0 0 0 2 15.9424572 15.9424572 3380 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything 1 to 10 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 500 0 500 0 0 0 0 500 0 500 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 11.4595022 11.4595022 3401 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 11 to 20 Have not spent anything Have not spent anything 31 to 40 Have not spent anything 21 to 30 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 3300 3300 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 20 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5300 2000 0 0 3300 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 24 2 15.6616735 15.6616735 3405 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 20 2 13.2972794 13.2972794 3406 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1% to 24% Slightly disagree (-2) Don't know Don't know Slightly agree (2) Don't know Strongly disagree (-4) Don't know Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 9 0 0 0 0 0 11.1111107 0 0 0 0 0 0 0 9 2 16.2670212 16.2670212 3408 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.4595022 11.4595022 3415 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No Yes No Yes No No No No No 2-4 days a week (156) No No No Yes No No No Yes No No No No No No Yes No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything 1 to 10 About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 Have not spent anything 1 to 10 Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Don't know Don't know Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No No Yes No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 1800 0 0 0 0 0 1800 0 0 0 0 1000 0 1000 0 0 0 1 2 4 0 0 0 0 0 3 0 0 0 0 2 1 0 0 0 0 2 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 2800 0 1000 0 1800 0 7 3 3 6 4 66.6666641 0 0 0 2 2 100 100 0 1 2 16.5586567 16.5586567 3419 Yes No No No No No No No No No No No No Yes No No No Yes No No Yes No Yes No No No No No No No No Yes Yes No Yes Yes No No No No No No Once a day (365) No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 1 to 10 About once a month (12) About once a month (12) 51 to 100 1 to 10 41 to 50 51 to 100 1 to 10 1% to 24% None None None 41 to 50 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 20 to 30 1 to 10 Have not spent anything 11 to 20 Have not spent anything 51 to 100 1 to 10 41 to 50 51 to 100 1 to 10 1% to 24% None None None None 41 to 50 100% 41 to 50 100% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Don't know Don't know Yes No Yes Yes No No No Yes No No No No No Yes No No Yes Yes No No No No Yes No Yes No No No Yes Yes No Yes No No Yes Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No Yes No No No No No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 2647 0 1297 0 0 0 1350 0 0 0 0 3500 2500 1000 0 0 0 1 0 60 0 0 0 0 0 4 0 0 0 0 0 50 0 0 0 0 0 54 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 1 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.40740728 0 0 100 100 4850 2500 1000 0 1350 0 61 4 50 54 4 7.40740728 0 0 0 50 50 100 100 0 7 2 16.2670212 16.2670212 3423 No No No No No No No No No Yes No No No No No Yes No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Once a month (12) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 1 to 10 Have not spent anything Have not spent anything 41 to 50 11 to 20 1 to 10 None None Slightly disagree (-2) Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 2000 2000 0 0 0 0 0 0 0 0 0 0 5000 0 0 0 0 0 5000 0 0 0 0 700 700 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7700 700 0 0 5000 2000 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 16.7080975 16.7080975 3426 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No No phone Being bought on mortgage Urban England London South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.4595022 11.4595022 3435 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 1 1 Yes No No No phone Owned outright by household Urban England London South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 13.2972794 13.2972794 3436 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No No phone Rented from local authority Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 13.2972794 13.2972794 3445 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Neither agree nor disagree (0) Slightly disagree (-2) Don't know Slightly agree (2) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England London South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.9424572 15.9424572 3446 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No Yes Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 Yes No No Phone Owned outright by household Urban England London South White & Black Caribbean Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 13.2972794 13.2972794 3452 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Don't know Neither agree nor disagree (0) Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 Yes No No Phone Owned outright by household Urban England London South Any other Asian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 15.6616735 15.6616735 3453 Yes No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Don't know Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No Yes Yes Yes Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes Yes No Phone Owned outright by household Urban England London South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 16.2670212 16.2670212 3455 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 13.2972794 13.2972794 3471 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No Yes No No No No No No No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 16.7080975 16.7080975 3472 No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Rented from private landlord Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 16.9990063 16.9990063 3475 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Don't know Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 1000 1000 0 0 0 0 1300 0 500 0 0 0 800 0 0 0 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1800 1000 0 0 800 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 12.7246933 12.7246933 3477 No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from private landlord Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 11.4595022 11.4595022 3480 Yes Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 Have not spent anything Have not spent anything Have not spent anything 51 to 100 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Rented from private landlord Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAPI Adults 70 7000 7000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 3500 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 100 0 100 0 0 0 0 0 0 0 0 0 0 10500 3500 0 0 0 7000 3 0 1 1 1 100 0 0 0 0 0 100 0 0 2 2 16.2670212 16.2670212 3481 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 3 3 Yes No No Phone Rented from local authority Urban England London South African Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11.4595022 11.4595022 3491 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Rented from local authority Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 16.3664169 16.3664169 3509 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 11 to 20 None 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 20 1 11.4595022 11.4595022 3516 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No No No No No Once a day (365) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Rural England South West South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 16.2670212 16.2670212 3517 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Don't know Yes No No No No No No No Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 12.7246933 12.7246933 3520 Yes Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No Yes No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% None None 100% Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything 31 to 40 1 to 10 Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None 1 to 10 1% to 24% None None None 1% to 24% None 1 to 10 Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Being bought on mortgage Urban England South West South White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 4500 0 0 0 4000 500 0 0 0 0 0 0 0 0 0 0 0 3 8 0 0 0 0 0 4 0 0 0 0 2 4 0 0 0 0 2 8 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 0 0 100 0 0 0 0 0 0 0 0 0 0 4500 0 4000 500 0 0 11 4 6 10 2 20 0 2 20 8 0 20 0 0 1 2 15.6616735 15.6616735 3531 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 16.2670212 16.2670212 3535 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) No No No No No No No No No No No No No No Yes No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Rented from local authority Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 900 0 900 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 11.5655737 11.5655737 3537 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) No Yes Yes No No No No No No No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Being bought on mortgage Urban Wales Wales Midlands Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1000 1000 0 0 0 0 3 0 1 1 0 0 0 0 0 1 1 100 100 0 2 2 14.785223 14.785223 3538 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything 21 to 30 None 21 to 30 100+ 100+ Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 None None Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 1400 0 0 0 0 0 1400 0 0 0 0 12000 12000 0 0 0 0 1 0 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13400 12000 0 0 1400 0 29 0 0 0 0 0 0 0 0 0 0 0 0 0 29 1 14.8755665 14.8755665 3542 No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No Yes No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% None None None None None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 1000 0 0 0 1000 0 2 0 1 1 0 0 0 1 100 1 0 0 0 0 1 2 14.2350197 14.2350197 3543 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.1861219 15.1861219 3544 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Rented from private landlord Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.4156313 10.4156313 3551 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from private landlord Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.0860023 12.0860023 3552 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Don't know Slightly agree (2) Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.1458216 10.1458216 3557 No No No No No No No Yes No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Strongly agree (4) Don't know Don't know No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Rented from local authority Rural England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2400 2400 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2400 2400 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 11.7729225 11.7729225 3558 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 No Yes No Phone Other Rural England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 12.0860023 12.0860023 3561 Yes No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes No No No No No No No Yes No No No No No No No No No No No Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Rented from private landlord Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.2350197 14.2350197 3571 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired Any Yes No No No Yes Yes No 4 5+ Yes No No Phone Being bought on mortgage Urban England East of England Midlands Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 14.6209984 14.6209984 3575 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No Yes No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No Yes No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None None Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Don't know Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Very confident (4) Yes No Yes No No No No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 Yes No No Phone Owned outright by household Urban England East of England Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAPI Adults 65 99 0 0 0 99 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99 0 99 0 0 0 1 1 0 1 1 100 0 0 0 0 0 100 0 0 0 3 14.2350197 14.2350197 3576 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 41 to 50 20 to 30 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 1200 0 0 0 0 0 1200 0 0 0 0 3000 3000 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4200 3000 0 0 1200 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 11.1626511 11.1626511 3581 No No No No No No No No No No No No No Yes No No No No No No Yes No Yes No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 None None None Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Being bought on mortgage Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 3500 3500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 0 0 0 0 3500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.7246933 12.7246933 3582 Yes No No No No No Yes No No No No No No Yes No No No Yes No No No No Yes No No No No No No No Yes No No Yes No No No No No No No No 2-4 days a week (156) No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Strongly agree (4) Don't know Don't know Don't know Don't know Don't know Slightly agree (2) Don't know No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes Yes No Phone Owned outright by household Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 900 0 0 0 0 0 900 0 0 0 0 700 700 0 0 0 0 1 0 3 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1600 700 0 0 900 0 4 1 1 2 0 0 0 0 0 2 0 0 0 0 2 2 14.4902239 14.4902239 3588 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Don't know Don't know Don't know Don't know Neither agree nor disagree (0) Yes No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.2373867 10.2373867 3590 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 No Yes No Phone Owned outright by household Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 12.0860023 12.0860023 3591 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Rented from local authority Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.0860023 12.0860023 3594 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 20 to 30 Have not spent anything 20 to 30 Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Don't know Slightly agree (2) Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Strongly disagree (-4) No No No No No Yes No No No No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 3000 0 3000 0 0 0 0 3000 0 3000 0 5000 5000 0 0 0 0 4 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8000 8000 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2 14.4902239 14.4902239 3598 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 100% 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 100% 1 to 10 100% None 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Rented from private landlord Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2200 2200 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 2 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 100 0 100 0 0 0 2200 2200 0 0 0 0 3 0 1 1 1 100 100 1 100 0 0 100 0 0 2 2 14.4902239 14.4902239 3605 Yes No No No Yes No Yes No No No No No No Yes No No No Yes No No No No Yes No No No No No No Yes No No Yes Yes No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Don't know Don't know No No No No No Yes No No Yes No Yes No No No No No No No No No Yes No Yes No No No Yes No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 Yes Yes No Phone Owned outright by household Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 5000 0 5000 0 0 0 0 0 0 0 0 0 0 0 0 3 0 6 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 3 3 0 0 0 0 0 3 3 100 100 0 6 1 14.785223 14.785223 3607 Yes No No No No No No No No No No Yes No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 14.785223 14.785223 3608 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 Yes No No Phone Being bought on mortgage Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 10.2373867 10.2373867 3621 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 4 4 Yes No No Phone Rented from local authority Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 9.96712971 9.96712971 3622 No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Don't know Don't know Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Don't know Don't know No No No No No No No No No No Yes Yes No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Rural England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 11.8791723 11.8791723 3624 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Rural England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 15.4505291 15.4505291 3628 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No No phone Owned outright by household Rural England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 15.4505291 15.4505291 3630 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 2 2 No Yes No No phone Rented from local authority Rural England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 10.4156313 10.4156313 3632 No No No No No No No No No No No Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Being bought on mortgage Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 11.8791723 11.8791723 3640 Yes No No No No No No No No No No No No Yes No No No No Yes No Yes No Yes No No No No No No No No No Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Don't know Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Being bought on mortgage Urban England West Midlands Midlands Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.1458216 10.1458216 3647 No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Don't know Don't know Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 3500 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 3500 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 15.1861219 15.1861219 3649 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 21 to 30 21 to 30 21 to 30 None None None None 11 to 20 75% to 99% None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 21 to 30 21 to 30 None None None None None None None None None None None None Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England West Midlands Midlands Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 25 25 0 0 0 0 0 25 0 0 0 0 0 2 11.7729225 11.7729225 3661 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.4156313 10.4156313 3662 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No Yes No No No No No No No No No No No No No No No Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England West Midlands Midlands Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.2373867 10.2373867 3665 Yes No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 68 500 0 0 500 0 0 0 0 0 0 0 0 500 0 0 0 0 0 500 0 0 0 0 0 0 0 2 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 500 0 0 500 0 3 0 1 1 0 0 0 0 0 1 0 0 0 0 2 2 11.5655737 11.5655737 3666 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 0 0 0 0 0 2 2 100 100 0 0 2 11.851346 11.851346 3671 Yes No No No No Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Rural England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.5867491 14.5867491 3673 Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 Yes No No Phone Owned outright by household Rural England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 12.1726933 12.1726933 3674 No Yes No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No 2-3 times a month (30) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly disagree (-4) Don't know Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired Any Yes No No No Yes No Yes 2 3 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 3 14.9822664 14.9822664 3687 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 100+ None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 15000 15000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 0 0 0 0 15000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.3846331 12.3846331 3688 Yes No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No Once a day (365) No No No No No No No No No Yes No No No No Yes No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything 41 to 50 None 41 to 50 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 51 to 100 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 51 to 100 Slightly disagree (-2) Strongly disagree (-4) Slightly agree (2) Don't know Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) No Yes No No No No No Yes Yes No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 65 3000 0 0 3000 0 0 0 0 0 0 0 0 1240 0 0 0 0 0 1240 0 0 0 0 2500 2500 0 45 0 0 1 5 7 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 45 0 0 1 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 6740 5500 0 0 1240 0 58 0 5 5 0 0 0 0 0 5 5 100 100 0 53 2 11.851346 11.851346 3697 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.8322945 15.8322945 3708 Yes No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.396512 10.396512 3711 Yes No No No No No Yes No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No No No Yes No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.1505489 15.1505489 3713 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 Yes No No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 10.6729898 10.6729898 3714 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Not married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.6729898 10.6729898 3715 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 12.3846331 12.3846331 3719 No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Slightly disagree (-2) Don't know Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.8482609 14.8482609 3722 No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 None None Slightly disagree (-2) Don't know Slightly disagree (-2) Slightly agree (2) Don't know Strongly disagree (-4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 1200 0 0 1200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 800 800 0 20 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 24 2 15.1505489 15.1505489 3723 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Don't know Yes No No No No Yes No No No Yes Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 10.396512 10.396512 3724 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 10.6729898 10.6729898 3727 Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 41 to 50 31 to 40 Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Strongly disagree (-4) Don't know Slightly disagree (-2) Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Not particularly confident (2) Yes No No No No No No No No No No Yes No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Rural Wales Wales Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 65 2000 1000 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 10 0 0 0 1 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 10 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4500 3500 0 0 0 1000 16 0 1 1 0 0 0 0 0 1 1 100 100 0 15 2 14.2350197 14.2350197 3736 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 11.4595022 11.4595022 3752 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) No No No No No No No No Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 9.96712971 9.96712971 3755 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 16.3664169 16.3664169 3756 No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Yes No No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything 21 to 30 None 21 to 30 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 None None Neither agree nor disagree (0) Don't know Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Yes Yes No No No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 Yes Yes No No phone Rented from local authority Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 2500 0 0 2500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 22 0 0 0 0 0 0 0 0 0 0 0 0 0 22 1 11.2633934 11.2633934 3757 No Yes No No No No No No No No No No No Yes No No No No Yes No No No Yes No No No No No No No No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 14.2350197 14.2350197 3758 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 11 to 20 None 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 14 0 0 0 0 0 0 0 0 0 0 0 0 0 14 2 13.2972794 13.2972794 3794 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Rented from local authority Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.2782469 12.2782469 3815 No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly disagree (-4) Don't know Slightly agree (2) Don't know Don't know Strongly agree (4) Don't know Don't know No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 14.4614468 14.4614468 3819 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No Yes No Yes No No No No No No Yes Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No Yes No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes Yes No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.960187 11.960187 3820 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.396512 10.396512 3824 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No No phone Rented from local authority Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2 12.3846331 12.3846331 3836 No Yes No No No No No No No No No No No Yes No No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 3 3 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 20 to 30 None None None Strongly agree (4) Neither agree nor disagree (0) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Don't know Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No Yes No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes Yes No Phone Rented from local authority Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 0 0 0 0 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.851346 11.851346 3839 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Don't know Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Rural England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.396512 10.396512 3842 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Don't know Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 3500 0 3500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 15.4221678 15.4221678 3845 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 1000 0 0 1000 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 500 500 0 10 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 1 12.063817 12.063817 3861 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 3 3 Yes No No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 10.6729898 10.6729898 3862 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No No No No No Once a week (52) No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rented from private landlord Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.8482609 14.8482609 3863 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Rural England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 399 0 0 0 0 399 0 0 0 0 0 1000 1000 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1399 1000 0 399 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 15.8322945 15.8322945 3864 No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Once a week (52) No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 15.4221678 15.4221678 3872 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.8322945 15.8322945 3873 Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 None None Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 1200 0 0 0 0 0 1200 0 0 0 0 2000 2000 0 0 0 0 1 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3200 2000 0 0 1200 0 11 0 0 0 0 0 0 0 0 0 0 0 0 0 11 1 10.396512 10.396512 3874 Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from private landlord Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 15.5613527 15.5613527 3883 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.6729898 10.6729898 3884 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.851346 11.851346 3885 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 21 to 30 None 21 to 30 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Being bought on mortgage Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 1800 0 0 1800 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1800 1800 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 30 1 12.3846331 12.3846331 3886 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Slightly agree (2) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 Yes No No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 15.5613527 15.5613527 3896 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 Have not spent anything Have not spent anything Have not spent anything 31 to 40 1 to 10 None None Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Other Urban England East Midlands Midlands Caribbean Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 4000 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9000 5000 0 0 0 4000 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2 15.4505291 15.4505291 3907 No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 14.6209984 14.6209984 3913 Yes No No No No No No No No No No Yes No Yes No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Don't know Don't know No Yes No No Yes Yes No Yes No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.2350197 14.2350197 3920 Yes No No No No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.2350197 14.2350197 3931 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No No phone Rented from local authority Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.4156313 10.4156313 3933 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 1600 0 1600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 12.0860023 12.0860023 3943 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired Any Yes No No No Yes No Yes 2 3 Yes No No Phone Owned outright by household Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 12.0860023 12.0860023 3947 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No 5-6 days a week (286) No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No Yes No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 2800 0 0 0 0 0 2800 0 0 0 0 0 0 0 0 0 0 1 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 2800 0 0 0 2800 0 7 6 0 6 0 0 0 0 0 6 6 100 100 0 1 1 15.050293 15.050293 3948 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Being bought on mortgage Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 10.4156313 10.4156313 3951 Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9.96712971 9.96712971 3953 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Don't know Strongly agree (4) Don't know Strongly agree (4) No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Being bought on mortgage Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 16.2670212 16.2670212 3961 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 1200 0 0 0 0 0 1200 0 0 0 0 1000 1000 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2200 1000 0 0 1200 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 14.785223 14.785223 3962 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No Yes Yes Yes No Yes Yes No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 50% to 74% 1 to 10 100% None 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Being bought on mortgage Urban England South West South White British White No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 100 0 0 0 0 0 0 0 0 0 0 0 2 0 1 1 1 100 50 1 100 0 0 100 0 0 1 1 15.6616735 15.6616735 3971 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 11 to 20 None 11 to 20 41 to 50 31 to 40 Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 None None Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 1400 0 1400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 3500 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4900 3500 0 0 0 1400 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 1 16.9990063 16.9990063 3973 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Don't know Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.1626511 11.1626511 3974 No Yes No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Don't know Strongly agree (4) Don't know Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.6616735 15.6616735 3975 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 4 4 Yes No No Phone Owned outright by household Urban England South East South Any other Asian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 13.2972794 13.2972794 3982 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Rented from local authority Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9.96712971 9.96712971 3984 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 15.4505291 15.4505291 3985 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No Yes No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Rented from local authority Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 13.2972794 13.2972794 4003 Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Neither agree nor disagree (0) Don't know Don't know Don't know Slightly disagree (-2) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Other Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.7246933 12.7246933 4005 No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 16.9990063 16.9990063 4006 No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Rural England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.3846331 12.3846331 4037 Yes Yes No No No No No No No No No No No Yes Yes No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No 3 3 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 1 to 10 Have not spent anything Have not spent anything Have not spent anything 20 to 30 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 50% to 74% 1 to 10 50% to 74% None 1 to 10 Strongly disagree (-4) Don't know Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Rural England Yorkshire and The Humber North White British White No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes CAPI Adults 65 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 1 0 0 0 2 5 0 0 0 0 0 0 1 0 0 0 2 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3500 500 0 0 0 3000 8 0 3 3 0 0 0 0 0 3 2 66.6666641 66.6666641 0 5 2 15.1505489 15.1505489 4038 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No No phone Rented from local authority Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.6729898 10.6729898 4057 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know No No No No No No No Yes No No No No No No No No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 14.2350197 14.2350197 4069 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.0860023 12.0860023 4071 Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No 2-3 times a month (30) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Don't know Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Don't know Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 10.2373867 10.2373867 4072 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.0860023 12.0860023 4078 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 1200 0 1200 0 0 0 0 0 0 0 0 1800 1800 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1800 1800 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 16.3664169 16.3664169 4090 No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 11 to 20 31 to 40 1 to 10 None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 No Yes No Phone Owned outright by household Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 4000 4000 0 0 0 0 0 0 0 0 0 0 1500 0 0 0 0 0 1500 0 0 0 0 3000 3000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8500 3000 0 0 1500 4000 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 10.9660501 10.9660501 4091 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No Yes No Yes No Yes No No No No No No No Once a day (365) No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 11 to 20 Every 2-3 weeks (30) 21 to 30 1 to 10 1 to 10 1 to 10 50% to 74% 1% to 24% None None 1 to 10 100% 100% 11 to 20 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 1 to 10 50% to 74% 1 to 10 1% to 24% None None 1 to 10 100% 1 to 10 100% None 11 to 20 Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No Not at all confident (1) No No No No No No No No No No No No No Yes No No No No No No No Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes Yes No No No Yes No Yes Yes Yes No No No Yes CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3600 2000 1600 0 0 0 0 0 21 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 4 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66.6666641 15.7894735 0 100 100 3600 2000 1600 0 0 0 21 6 0 6 4 66.6666641 15.7894735 0 0 2 2 100 100 0 15 2 12.7246933 12.7246933 4092 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No No phone Owned outright by household Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.4595022 11.4595022 4093 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No Yes No No No No No No No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 16.0863361 16.0863361 4094 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Other Urban England South East South African Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 13.2972794 13.2972794 4096 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 Yes No No No phone Rented from local authority Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9.45807743 9.45807743 4121 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No No phone Rented from local authority Urban England South West South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 13.2972794 13.2972794 4136 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Don't know No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No Yes No No No No No No No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 0 0 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.1861219 15.1861219 4137 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.2350197 14.2350197 4141 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 11 to 20 None None Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) No No No No No No No No No No Yes No No No No No No No No No Not at all confident (1) No No No No No No Yes No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 2000 2000 0 2400 0 0 0 0 0 2400 0 0 0 0 2500 2500 0 0 0 6 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6900 4500 0 0 2400 0 11 0 0 0 0 0 0 0 0 0 0 0 0 0 11 2 14.6209984 14.6209984 4143 No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Don't know Don't know Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 15.28969 15.28969 4144 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Rural England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.0860023 12.0860023 4152 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Rented from local authority Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.5813074 10.5813074 4173 No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Once a day (365) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Don't know Don't know Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 0 0 0 0 0 2 2 100 100 0 0 2 10.1256704 10.1256704 4177 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.4156313 10.4156313 4180 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Rented from local authority Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.5813074 10.5813074 4182 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) Yes No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 100+ 51 to 100 51 to 100 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 41 to 50 Have not spent anything Have not spent anything 11 to 20 51 to 100 11 to 20 None None Strongly disagree (-4) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Don't know No Yes No No No Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural Scotland Scotland North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAPI Adults 67 11500 10000 0 1500 0 0 0 0 0 0 0 0 1500 0 0 0 0 0 1500 0 0 0 0 3500 3500 0 14 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 5000 0 0 1500 10000 19 0 0 0 0 0 0 0 0 0 0 0 0 0 19 2 14.4614468 14.4614468 4185 No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly disagree (-4) Don't know Strongly disagree (-4) Don't know Strongly agree (4) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 2300 0 800 0 0 0 1500 0 0 0 0 4000 4000 0 0 0 0 1 3 5 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 1 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5500 4000 0 0 1500 0 9 0 3 3 0 0 0 0 0 3 3 100 100 0 6 1 15.28969 15.28969 4192 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Slightly agree (2) Strongly agree (4) Strongly agree (4) Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 15.1505489 15.1505489 4200 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No Once a day (365) No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Strongly disagree (-4) Don't know Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) Don't know Don't know Yes Yes Yes No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 65 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1100 600 500 10 0 0 0 0 3 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 10 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 2100 1600 500 0 0 0 13 1 0 1 0 0 0 0 0 1 1 100 100 0 12 1 14.5867491 14.5867491 4203 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No Yes No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Rural England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.1505489 15.1505489 4211 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% None None Strongly agree (4) Don't know Strongly agree (4) Strongly agree (4) Don't know Strongly agree (4) Don't know Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England North East North White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 0 0 0 2 100 2 2 100 100 0 0 1 10.2134066 10.2134066 4216 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No No No Yes No No Yes No No No No No No No Yes No No Yes No No No No No No No No No No Yes No Yes No No No No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly disagree (-4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Strongly disagree (-4) Don't know Don't know Yes No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No Yes No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 1 0 0 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 3 1 0 1 0 0 0 1 100 1 1 100 100 0 2 2 14.5867491 14.5867491 4234 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North East North White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 0 0 0 0 0 2 2 100 100 0 0 2 15.1505489 15.1505489 4235 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 4 4 Yes No No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 13.2972794 13.2972794 4249 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 No Yes No Phone Rented from private landlord Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 13.2972794 13.2972794 4258 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Once a day (365) Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Don't know Strongly disagree (-4) No No No No No No No No Yes No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South East South White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 66 300 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 500 0 100 0 0 4 2 0 2 0 0 0 0 0 2 2 100 100 0 2 2 15.6616735 15.6616735 4261 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Don't know Slightly agree (2) Don't know Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Being bought on mortgage Urban England South East South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12.7246933 12.7246933 4263 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.7246933 12.7246933 4266 No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No No Yes Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.4595022 11.4595022 4267 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England South East South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 13.2972794 13.2972794 4271 Yes No No No No No No No No No No No No Yes No No No No No No Yes No Yes No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 11 to 20 Have not spent anything Have not spent anything 1 to 10 11 to 20 1 to 10 None None Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 1600 1600 0 0 0 0 0 0 0 0 0 0 800 0 0 0 0 0 800 0 0 0 0 2000 2000 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4400 2000 0 0 800 1600 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 16.2670212 16.2670212 4276 No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No 2-4 days a week (156) No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 11 to 20 1 to 10 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 400 0 400 0 0 0 0 400 0 400 0 1499 999 500 0 0 0 1 0 3 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 1899 1399 500 0 0 0 4 2 0 2 2 100 0 0 0 0 0 100 0 0 2 2 11.1626511 11.1626511 4279 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Rented from private landlord Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 1200 0 0 1200 0 0 0 0 0 0 0 0 1500 0 1500 0 0 0 0 0 0 0 0 0 0 0 10 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1200 1200 0 0 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 13 2 13.0697212 13.0697212 4280 Yes No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes Yes No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 999 999 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 999 999 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 11.2633934 11.2633934 4281 Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Once a day (365) Yes No No No No Yes No Yes No No No Yes No No No No Yes No Yes No No No No No No No No No No No No Yes No Yes No No No No Yes No Yes No No No Yes No No No No Yes No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 31 to 40 1 to 10 Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 31 to 40 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAPI Adults 65 699 0 0 0 699 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4499 3800 699 2 0 0 0 6 6 1 0 0 0 3 2 1 0 0 0 3 1 2 0 0 0 6 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 5198 3800 1398 0 0 0 14 6 5 11 3 27.272728 0 0 0 8 8 100 100 0 3 2 12.7246933 12.7246933 4282 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Other Urban England London South African Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 11.4595022 11.4595022 4290 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly disagree (-4) Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Don't know Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No Yes No No No No No No No No No Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 2 2 Yes No No No phone Owned outright by household Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.9660501 10.9660501 4304 No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 31 to 40 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 100% Strongly disagree (-4) Don't know Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England London South White Irish White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 4000 0 0 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 7 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 0 0 2 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 5500 5500 0 0 0 0 9 0 0 0 0 0 100 0 0 0 0 0 0 0 9 2 12.9528236 12.9528236 4305 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No Yes Yes No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) No No No No No No No Yes No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No Yes No No No No No No No No No No No Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England South West South White British White No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 4 4 0 0 0 0 0 4 4 100 100 0 0 2 12.7246933 12.7246933 4323 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None None Neither agree nor disagree (0) Strongly agree (4) Don't know Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Don't know Yes No No No No No No No No Yes Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from private landlord Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 0 0 0 0 0 2 0 0 0 0 0 1 16.5586567 16.5586567 4331 Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No Once a day (365) No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 50% to 74% None None None 100% None 1 to 10 Slightly disagree (-2) Don't know Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Don't know Slightly agree (2) Yes No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes CAPI Adults 67 0 0 0 0 0 0 0 0 0 2000 2000 0 2000 0 2000 0 0 0 0 0 0 0 0 2000 0 2000 0 0 1 2 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 100 4000 2000 2000 0 0 0 7 4 0 4 4 100 57.1428566 0 0 0 0 100 0 0 3 2 14.2350197 14.2350197 4341 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 12.0860023 12.0860023 4343 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Don't know Strongly agree (4) Don't know Don't know Slightly disagree (-2) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 14.4902239 14.4902239 4344 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No Yes No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 65 1200 1200 0 0 0 0 0 0 0 0 0 0 1100 0 0 0 0 0 1100 0 0 0 0 500 500 0 0 0 0 0 2 8 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2800 500 0 0 1100 1200 10 2 0 2 0 0 0 0 0 2 2 100 100 0 8 2 14.2350197 14.2350197 4347 Yes No No No No No No No No Yes No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No Yes No No No No No Yes No Yes No No No No No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 Have not spent anything Have not spent anything Have not spent anything 100+ 1 to 10 None None Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Don't know Very confident (4) Yes No Yes No No No No No No No No No Yes No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 20000 20000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24000 4000 0 0 0 20000 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 14.785223 14.785223 4348 Yes No No No No No No No No No No No No Yes No No No No No Yes Yes No Yes No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No Yes No No No No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Don't know No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 5+ 5+ Yes Yes No Phone Owned outright by household Urban Wales Wales Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 1510 0 0 0 0 0 1510 0 0 0 0 500 500 0 0 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2010 500 0 0 1510 0 4 0 1 1 0 0 0 0 0 1 1 100 100 0 3 5 14.2350197 14.2350197 4349 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 10.4156313 10.4156313 4351 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 11 to 20 None 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Slightly disagree (-2) Don't know Slightly agree (2) Don't know Strongly agree (4) Strongly agree (4) Don't know Slightly agree (2) Yes No No No No No No No No No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 350 350 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 350 350 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 9.96712971 9.96712971 4363 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 21 to 30 None 21 to 30 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 21 to 30 Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Being bought on mortgage Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 70 2000 0 0 2000 0 0 0 0 0 0 0 0 2000 0 0 0 0 2000 0 0 0 0 0 0 0 0 23 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 23 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4000 2000 0 2000 0 0 27 0 3 3 0 0 0 0 0 3 3 100 100 0 24 1 9.96712971 9.96712971 4367 No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Don't know Don't know Slightly agree (2) Slightly agree (2) Don't know Don't know Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 1000 0 1000 0 500 500 0 0 0 0 4 1 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1500 1500 0 0 0 0 9 0 1 1 0 0 0 0 0 1 1 100 100 0 8 1 14.785223 14.785223 4371 No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No No No No No No No No No No No No No No No No Yes Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England East of England Midlands Caribbean Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.2373867 10.2373867 4375 No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No Once a month (12) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 41 to 50 Have not spent anything 41 to 50 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Slightly agree (2) Don't know Neither agree nor disagree (0) Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 2000 0 0 0 0 5000 0 5000 0 200 200 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5200 5200 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 15.5613527 15.5613527 4376 No No No No No No No No No Yes No No No No No No No Yes No No No No Yes No No No Yes No No No No Yes No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 Yes Yes No Phone Rented from local authority Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 13.0697212 13.0697212 4377 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 15.4505291 15.4505291 4379 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No Yes No No No No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Being bought on mortgage Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 15.1861219 15.1861219 4391 Yes No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Slightly disagree (-2) Don't know Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Don't know Yes No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 699 699 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 699 699 0 0 0 0 2 0 1 1 0 0 0 0 0 1 0 0 0 0 1 2 14.4902239 14.4902239 4410 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No Yes No No No No No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 11.5655737 11.5655737 4412 Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Don't know Don't know Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Don't know Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No No Yes Phone Being bought on mortgage Rural England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.2350197 14.2350197 4417 No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 21 to 30 None 21 to 30 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 31 to 40 Slightly disagree (-2) Don't know Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Don't know Don't know No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Rural England West Midlands Midlands White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 68 0 0 0 0 0 0 0 0 0 1000 1000 0 2000 0 2000 0 0 0 0 0 0 0 0 6000 6000 0 10 0 2 5 0 30 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 5 0 30 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 7000 0 0 0 0 47 0 10 10 0 0 0 0 0 10 10 100 100 0 37 1 9.96712971 9.96712971 4418 Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 11 to 20 None None Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Rural England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 1500 1000 0 500 0 0 0 0 0 0 0 0 600 0 0 0 0 0 600 0 0 0 0 500 500 0 10 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2600 1000 0 0 600 1000 20 0 0 0 0 0 0 0 0 0 0 0 0 0 20 1 14.4902239 14.4902239 4419 No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Slightly disagree (-2) Don't know Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Don't know Don't know No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No Yes No No No No No No No No No No No No No No No Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 2000 0 0 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 4 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 10.2373867 10.2373867 4420 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 15.4505291 15.4505291 4428 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 4 4 Yes No No Phone Owned outright by household Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 10.2373867 10.2373867 4430 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Being bought on mortgage Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 700 700 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 700 700 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 15.8322945 15.8322945 4440 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.8322945 15.8322945 4441 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% 11 to 20 Have not spent anything 11 to 20 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 100% Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 1500 0 1500 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 1500 0 0 1500 0 3 0 0 0 0 0 100 0 0 0 0 0 0 0 3 1 15.4221678 15.4221678 4442 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.3846331 12.3846331 4467 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Don't know Don't know Strongly disagree (-4) Don't know Don't know Strongly disagree (-4) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No Yes No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.851346 11.851346 4469 Yes Yes No No No No No No No No No No No Yes Yes No No Yes No No Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 1 to 10 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) 51 to 100 51 to 100 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes Yes No Phone Rented from private landlord Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 65 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 0 0 0 0 0 0 0 0 1800 600 1200 0 0 1 0 2 3 0 0 0 0 0 2 0 0 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 6800 5600 1200 0 0 0 6 2 2 4 0 0 0 0 0 4 4 100 100 0 2 2 14.5867491 14.5867491 4471 Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Don't know Don't know No No No No No No No No No No No Yes No No No No No No No No Not at all confident (1) No No No No No No No No No Yes No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban Northern Ireland Northern Ireland North White Irish White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4500 4500 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4500 4500 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 11.1398211 11.1398211 4479 Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No Yes No No No No Yes No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No Yes No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.4418745 11.4418745 4480 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Neither agree nor disagree (0) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No Yes No No No No No No No No No No No Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes E Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Rural England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.2373867 10.2373867 4487 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No Yes No No No No No No No No No No No No No No Female 65+ 55+ 65 to 74 ABC1 No Yes No No Yes No C1 Not married Not working Retired None No Yes No No No No No 1 1 Yes No No Phone Owned outright by household Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 14.785223 14.785223 4494 Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 25% to 49% 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None 1 to 10 25% to 49% 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No Yes No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No No Yes Phone Owned outright by household Urban England East of England Midlands White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 10 0 0 0 0 5 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 30 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 15 0 10 10 0 0 0 3 30 10 10 100 100 0 5 2 14.2350197 14.2350197 4495 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Not married Not working Retired None No Yes No No No No No 1 1 No Yes No Phone Owned outright by household Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 74 0 0 0 0 0 0 0 0 0 0 0 0 450 0 0 0 0 0 450 0 0 0 0 500 500 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 950 500 0 0 450 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 15.8322945 15.8322945 4498 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No Yes No No No No No No No No No No No No Female 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.9660501 10.9660501 4503 Yes No No No No No No No No No No No No Yes No Yes No No No No Yes No Yes No No No No No No No No Yes No No Yes No No No No No No No Several times a day (730) No No No Yes No No Yes Yes Yes No No No No No Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly disagree (-4) Don't know Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) Yes No Yes No No No No No No No No No No No No No No No No No No Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 14.2350197 14.2350197 4504 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Rural England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.4505291 15.4505291 4506 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No Yes No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 65+ 55+ 65 to 74 C2DE No No No Yes No Yes D Married\\Living as Married Not working Retired None No Yes No No No No No 3 3 Yes No No Phone Rented from private landlord Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11.4595022 11.4595022 4512 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Slightly agree (2) Don't know Don't know Don't know Don't know Slightly agree (2) Don't know Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 No Yes No Phone Owned outright by household Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 66 1200 0 0 1200 0 0 0 0 0 0 0 0 1200 0 0 0 0 0 1200 0 0 0 0 0 0 0 16 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2400 1200 0 0 1200 0 18 0 2 2 0 0 0 0 0 2 2 100 100 0 16 2 14.2350197 14.2350197 4521 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 None None Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 65+ 55+ 65 to 74 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Retired None No Yes No No No No No 2 2 Yes No No Phone Owned outright by household Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 68 0 0 0 0 0 0 0 0 0 0 0 0 5300 0 4000 0 0 0 1300 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1300 0 0 0 1300 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 12.7246933 12.7246933 4534 Yes No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 4 4 No Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 1000 0 1000 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 14.5680799 14.5680799 993 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 Have not spent anything 11 to 20 Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 11 to 20 100% None 1 to 10 1% to 24% 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 31 to 40 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 1 to 10 11 to 20 11 to 20 50% to 74% None None 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes Yes Yes Yes No No No Yes No No No No No Yes Yes No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No No Yes 4 4 Yes No No Phone Urban England East of England Midlands White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 2299 799 0 1500 0 0 0 0 0 0 0 1500 0 1500 0 0 0 2 5 12 0 0 0 0 0 12 0 0 0 0 5 0 0 0 0 0 5 12 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 16.666666 0 100 3799 1500 1500 0 799 0 19 12 5 17 12 70.5882339 0 2 11.7647057 5 5 100 100 0 2 4 11.4110355 11.4110355 1003 Yes Yes Yes No Yes No No No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No Yes No No No No No No Yes No No No Yes Yes No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 41 to 50 41 to 50 Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything About once a month (12) Don't know Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 Have not spent anything 11 to 20 1 to 10 About once a month (12) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 11 to 20 Have not spent anything 51 to 100 Have not spent anything 21 to 30 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% 1 to 10 1 to 10 Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Slightly disagree (-2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No Yes No No No No No No No No No No Yes Yes Yes Yes Yes No Yes No No Yes No No No Yes Yes No Yes No Yes No Yes No No No Yes No No No No No No No Yes No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England North West North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 0 0 0 0 0 0 4000 4000 0 0 0 0 7500 4500 0 2000 1000 0 0 3000 0 2000 1000 1200 1200 0 2 2 1 8 7 2 1 0 0 2 2 0 1 1 1 1 5 0 2 1 1 3 7 0 2 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 0 0 0 0 0 0 1 0 0 0 1 0 5 0 2 100 0 0 0 100 0 0 0 100 100 0 0 0 100 100 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 16700 9200 2000 0 5500 0 22 5 9 14 5 35.7142868 0 0 0 9 9 100 100 1 8 1 16.6998844 16.6998844 1008 Yes Yes No No No No Yes No Yes Yes No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 3 3 Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 Have not spent anything Have not spent anything Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 Have not spent anything 20 to 30 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 1 to 10 1 to 10 Have not spent anything Have not spent anything 21 to 30 11 to 20 11 to 20 11 to 20 100% None None None None None 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No Yes Yes Yes 5+ 5+ No Yes No Phone Urban England Yorkshire and The Humber North Any other mixed background Minority Ethnic Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 29 4000 0 0 0 1000 3000 3000 3000 0 0 0 0 3000 0 0 3000 0 0 0 3000 0 3000 0 0 0 0 15 3 0 5 0 0 15 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 5 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11000 9000 1000 1000 0 0 23 15 0 15 15 100 0 0 0 0 0 100 0 0 8 5 16.6998844 16.6998844 1035 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No Yes No No No No No No No No Yes Yes No Yes No No Yes No No No No No No Once a day (365) Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No No No No 51 to 100 41 to 50 41 to 50 Have not spent anything 3 1 to 10 Have not spent anything Have not spent anything About once a month (12) 101 to 200 101 to 200 101 to 200 101 to 200 100% 100% 1 to 10 1% to 24% 100% 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 1 to 10 1 to 10 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 31 to 40 21 to 30 21 to 30 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 11 to 20 Have not spent anything 20 to 30 41 to 50 101 to 200 101 to 200 1 to 10 101 to 200 101 to 200 75% to 99% 101 to 200 75% to 99% 1 to 10 1% to 24% None None None 75% to 99% None 11 to 20 Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Yes No Yes Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 5+ 5+ Yes Yes No Phone Urban England North West North Bangladeshi Minority Ethnic Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 30 8500 5000 0 2500 1000 0 0 0 0 1000 500 500 3400 2400 0 1000 0 0 0 0 0 0 0 2000 2000 0 135 1 2 6 5 3 125 1 1 1 0 0 0 0 0 2 5 0 125 1 1 3 5 0 125 1 1 0 0 0 135 1 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 1 3 0 3 100 100 1.60000002 0 100 100 100 0 0 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14900 6000 1500 0 2400 5000 152 128 7 135 127 94.0740738 94.4444427 2 1.48148143 8 0 94.0740738 0 0 17 5 16.6998844 16.6998844 1042 Yes No No No No No No No No No No No No Yes No No No No Yes No Yes No No No No No No Yes No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything Have not spent anything Have not spent anything 11 to 20 31 to 40 None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No Yes No No No No Yes No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 26 4000 4000 0 0 0 0 0 0 0 0 0 0 1200 1200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5200 0 0 0 1200 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.5546675 12.5546675 1047 Yes No Yes No No Yes No No No Yes No Yes No Yes No No No No Yes No Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No Yes No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No No Yes No Yes No 3 3 No Yes No Phone Urban Wales Wales Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 0 0 0 0 1000 1000 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 11.4110355 11.4110355 1048 Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No Yes No No No No No No No Yes Yes No No No No No No 100+ 3 11 to 20 11 to 20 100+ Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 31 to 40 11 to 20 11 to 20 Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 51 to 100 51 to 100 Have not spent anything Less often (6) 1 to 10 100% 1 to 10 1 to 10 31 to 40 21 to 30 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 100+ 100+ 11 to 20 Have not spent anything 11 to 20 20 to 30 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 75% to 99% 1 to 10 100% None 100% 1 to 10 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 3 3 No Yes No Phone Urban Scotland Scotland North Indian Minority Ethnic No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No Yes No Yes No No No Yes CAWI Adults 29 22111 1010 1001 20100 0 0 3800 1900 1900 5900 5900 0 3400 1500 1000 900 0 0 0 1800 900 900 0 1000 1000 0 2 2 2 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 1 2 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 2 1 2 1 1 1 0 50 0 0 0 100 50 100 0 100 0 100 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 36111 30700 1900 0 1500 2011 9 1 0 1 1 100 77.7777786 1 100 0 0 100 0 10 8 3 11.5925446 11.5925446 1064 Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 No Yes No Phone Rural England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 13.5682125 13.5682125 1065 Yes Yes No No No No No No No No No No No Yes Yes No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything 20 to 30 Have not spent anything None 21 to 30 21 to 30 Have not spent anything 11 to 20 None 11 to 20 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Yes Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 No Yes No Phone Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 0 2500 0 3000 3000 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5500 5500 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 4 18.6235714 18.6235714 1070 Yes No Yes No No Yes No No No Yes No No No Yes No No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 20 to 30 20 to 30 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No Yes No No Yes No 2 2 Yes No No Phone Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 3400 0 3000 0 0 0 400 3000 3000 0 0 500 500 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 900 500 0 0 400 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 11.4110355 11.4110355 1086 Yes No No No No Yes Yes No No Yes No No No Yes No No No No No Yes No No No No No No No No No No Yes No Yes Yes No Yes No No No No No No Several times a day (730) No Yes No Yes No No No No No No No No Yes No Yes Yes Yes Yes No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No Yes No Yes Yes Yes No No No No No No Yes No No No No No No No No No No Yes Yes Yes No No Yes No No Yes Yes Yes No No Yes No No Yes No No No No No No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 50% to 74% 100% 1 to 10 51 to 100 41 to 50 21 to 30 1 to 10 21 to 30 Have not spent anything 1 to 10 1 to 10 Most days (365) 1 to 10 1 to 10 1 to 10 None None 100% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 20 to 30 1 to 10 11 to 20 11 to 20 Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 100% None 1 to 10 1% to 24% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 11 to 20 1 to 10 41 to 50 1 to 10 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Yes Yes Yes Yes No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 5+ 5+ Yes No No Phone Urban England London South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 1000 0 1000 0 0 0 0 0 0 1000 1000 0 8000 2500 1000 2500 0 1000 1000 2798 599 1099 1100 0 0 0 0 0 3 3 12 0 0 0 1 0 0 0 0 0 1 2 5 0 0 0 2 2 5 0 0 0 2 0 5 0 0 0 0 1 0 0 0 0 1 1 1 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 1 7 0 0 0 0 0 0 0 0 0 0 0 100 0 50 0 100 0 100 50 50 100 100 100 0 20 0 100 0 0 0 0 0 12299 4599 1100 1000 4600 1000 18 1 8 9 7 77.7777786 6.25 3 33.3333321 2 2 100 100 0 9 5 14.5680799 14.5680799 1091 Yes No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No Once a day (365) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% None 1 to 10 Don't know Slightly disagree (-2) Strongly agree (4) Don't know Don't know Don't know Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes No 4 4 Yes No No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 0 0 0 0 0 1200 1200 0 5 0 0 0 0 3 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 60 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3700 1200 0 0 2500 0 8 0 5 5 0 0 0 3 60 5 5 100 100 0 3 4 18.6235714 18.6235714 1095 Yes No Yes No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes No No No No No No Once a day (365) Yes No Yes Yes No No No Yes No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Don't know Don't know Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Yes Yes No No No No No Yes No No No No No No No No Yes Yes Yes No Yes No No Yes No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England North East North White British White Yes No No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 32 1000 0 0 1000 0 0 2000 2000 0 0 0 0 600 0 0 600 0 0 0 600 0 600 0 2500 2500 0 11 3 0 1 0 3 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 0 1 0 3 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6700 6700 0 0 0 0 18 10 0 10 10 100 0 0 0 0 0 100 0 0 8 1 17.3453598 17.3453598 1096 Yes Yes No No No Yes No No No No No No No Yes Yes No No No Yes No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 51 to 100 3 3 Have not spent anything 11 to 20 11 to 20 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 51 to 100 11 to 20 21 to 30 41 to 50 11 to 20 25% to 49% 25% to 49% None None 11 to 20 25% to 49% 50% to 74% 11 to 20 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 11 to 20 Have not spent anything Have not spent anything 20 to 30 51 to 100 11 to 20 21 to 30 41 to 50 11 to 20 25% to 49% 11 to 20 25% to 49% None None 11 to 20 25% to 49% 11 to 20 50% to 74% None 21 to 30 Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Yes No No Yes No Yes No Yes No No No No No No No No No No No Yes Yes No No No No No No No Yes No Yes No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 25 6500 3000 0 2000 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 63 0 0 0 0 1 13 0 0 0 0 0 30 0 0 0 0 0 43 0 0 0 0 0 14 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 1 32.5581398 47.0588226 0 41.3793106 60.4651146 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7500 3000 1500 0 0 3000 64 13 30 43 14 32.5581398 45.7142868 0 0 29 12 60.4651146 41.3793106 0 21 1 17.3453598 17.3453598 1144 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes No No Yes No No No No No Yes Yes No No No No Yes No No No No Yes No No No No No No No No No No Yes Yes Yes No No Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 11 to 20 11 to 20 None None None None None None 11 to 20 75% to 99% 11 to 20 75% to 99% None 1 to 10 Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England South East South White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 0 0 0 199 199 0 2 1 0 0 10 1 1 0 0 0 0 0 1 1 0 0 10 0 2 1 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 699 199 0 0 500 0 14 1 12 13 0 0 0 0 0 13 11 84.615387 84.615387 0 1 3 18.6235714 18.6235714 1150 Yes Yes Yes No No Yes No No Yes Yes No No No Yes Yes No No No Yes No No No No No No No No No No No Yes No Yes No Yes Yes No No No No No No Several times a day (730) Yes No No Yes No Yes No Yes No No No Yes Yes No No Yes No Yes No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 11 to 20 50% to 74% 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 1 to 10 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 21 to 30 Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 20 to 30 Have not spent anything 1 to 10 11 to 20 41 to 50 11 to 20 11 to 20 11 to 20 100% 1 to 10 1% to 24% None None None 100% None 21 to 30 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes Yes No No Yes No No No No No No No No No No No No No No No No Yes No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban Scotland Scotland North Any other white White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 28 4000 2000 0 2000 0 0 0 0 0 0 0 0 3800 800 1000 2000 0 0 0 0 0 0 0 5000 2000 3000 20 0 0 5 0 18 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 15 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 5 0 3 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 11800 6000 3000 0 800 2000 43 15 0 15 15 100 23.2558136 0 0 0 0 100 0 0 28 1 17.1963615 17.1963615 1152 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No Yes No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No Yes Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None None Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% None None None None 1 to 10 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 50 0 6 0 0 0 0 3 3 0 0 0 0 0 3 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 50 0 0 0 0 9 3 3 6 0 0 0 6 100 6 0 0 0 1 3 2 17.3453598 17.3453598 1153 No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Once a day (365) No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No Yes No No No No No No No No Yes Yes No No No No No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 3 3 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 75% to 99% None 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 31 to 40 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 20 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 1 to 10 1 to 10 20 to 30 Have not spent anything 21 to 30 1 to 10 1 to 10 1 to 10 75% to 99% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 11 to 20 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) No Yes No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England West Midlands Midlands White British White No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 26 4899 0 0 1099 800 3000 3000 3000 0 999 999 0 3599 2500 0 1099 0 0 0 2599 1099 1500 0 599 599 0 12 2 2 2 2 2 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 8 0 0 0 0 0 0 0 2 1 0 2 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 80 0 20 100 100 0 0 0 0 0 0 100 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 100 0 0 0 12596 8296 800 1000 2500 0 22 0 10 10 8 80 25 2 20 2 2 100 100 0 12 3 16.9271107 16.9271107 1157 Yes No No No No No No No No No No No No Yes No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 16.9271107 16.9271107 1183 Yes No No No No Yes No No No No No No No Yes No No No No No No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 11 to 20 11 to 20 11 to 20 None None None None None None None Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 21 to 30 11 to 20 11 to 20 None None None None None None None None None None None 1 to 10 Strongly disagree (-4) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 29 200 0 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 20 0 0 0 0 3 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1200 1000 0 0 0 200 23 0 20 20 0 0 0 0 0 20 0 0 0 0 3 4 13.2410421 13.2410421 1195 Yes No No No No Yes No No Yes No No Yes No Yes No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No Once a day (365) Yes No No Yes No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 51 to 100 Have not spent anything Have not spent anything Have not spent anything 41 to 50 3 11 to 20 11 to 20 Every 2-3 weeks (30) Most days (365) 51 to 100 1 to 10 41 to 50 51 to 100 None None 100% 31 to 40 50% to 74% 51 to 100 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything 100+ Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 100% None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 100+ 1 to 10 Have not spent anything Have not spent anything 51 to 100 11 to 20 51 to 100 51 to 100 1 to 10 1% to 24% 11 to 20 100% 31 to 40 50% to 74% 51 to 100 100% 51 to 100 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No Yes Yes No Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes Yes Yes No No Yes Yes Yes Yes Yes Yes No No Yes Yes No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 9000 0 0 5000 2500 1500 0 0 0 40000 0 40000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 70 0 6 0 0 0 10 0 1 0 0 0 50 0 5 0 0 0 60 0 6 0 0 0 0 0 1 0 0 0 10 0 1 0 0 0 40 0 0 0 0 0 0 60 0 5 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 100 66.6666641 100 100 0 0 0 0 0 16.666666 100 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48000 5000 42500 500 0 0 76 11 55 66 1 1.5151515 100 40 60.60606 65 65 100 100 0 10 3 13.5682125 13.5682125 1211 Yes No Yes No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No Yes No Yes No No No No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Don't know Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 30 1200 0 0 1200 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 3000 3000 0 1 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5700 4200 0 0 1500 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 12.5546675 12.5546675 1215 Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes No Yes No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Don't know No Yes Yes No No No Yes Yes No No No No Yes Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 2 2 No No Yes Phone England South West South White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 28 0 0 0 0 0 0 400 400 0 500 500 0 600 0 600 0 0 0 0 0 0 0 0 0 0 0 20 1 1 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 900 900 0 0 0 0 22 0 20 20 0 0 0 0 0 20 20 100 100 0 2 2 14.5680799 14.5680799 1226 Yes No No No No No No No No Yes No Yes No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) No No No No Yes Yes No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 31 to 40 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 11 to 20 Have not spent anything Have not spent anything 31 to 40 51 to 100 21 to 30 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 21 to 30 Strongly disagree (-4) Slightly agree (2) Don't know Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No No Yes Yes No No No Yes No No No No Yes Yes Yes Yes Yes No No No Yes No No No No No No No No Yes No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 4 4 No Yes No Phone Urban England North West North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 27 6700 5500 0 1200 0 0 0 0 0 0 0 0 4000 3500 0 500 0 0 0 0 0 0 0 0 0 0 20 0 0 5 5 0 0 0 0 2 3 0 0 0 0 2 2 0 0 0 0 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 5 0 0 0 0 0 0 0 0 0 20 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 10700 1700 0 0 3500 5500 30 5 4 9 0 0 0 0 0 9 9 100 100 0 21 4 16.6998844 16.6998844 1227 Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No Yes No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 20 to 30 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 75% to 99% 1 to 10 75% to 99% None 1 to 10 Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Yes Yes No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time Any Yes No No Yes No No Yes 3 3 Yes No No Phone Rural Northern Ireland Northern Ireland North White Irish White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 34 1000 0 0 1000 0 0 2000 2000 0 0 0 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 6 3 0 1 3 0 3 0 0 0 0 0 0 0 0 1 3 0 3 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3500 3000 0 0 500 0 13 3 4 7 0 0 0 0 0 7 6 85.7142868 85.7142868 0 6 3 13.2465572 13.2465572 1235 Yes Yes No No No Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 2 0 2 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 4 1 1 2 0 0 0 0 0 2 2 100 100 0 2 2 18.6235714 18.6235714 1253 Yes Yes Yes Yes No Yes No No No Yes Yes Yes No Yes Yes No No No No No No No No No No No Yes No No Yes No Yes Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 11 to 20 11 to 20 None None None None 11 to 20 50% to 74% 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) No Yes Yes Yes No Yes No Yes Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 4 4 No No Yes Phone Urban England South West South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 8 0 0 2 10 1 0 0 0 0 0 0 8 0 0 2 10 0 8 0 0 2 10 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 5 0 1 8 0 0 2 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 50 50 100 100 0 0 50 100 100 0 0 0 0 0 2500 2500 0 0 0 0 21 0 20 20 0 0 0 14 70 20 20 100 100 0 1 4 17.9305305 17.9305305 1267 Yes No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No No No No No No No No Yes Yes No Yes Yes Yes No No No No No Several times a day (730) No No No Yes No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 21 to 30 None 21 to 30 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 31 to 40 1 to 10 1 to 10 1 to 10 1% to 24% None None None None 1 to 10 100% 1 to 10 100% None 21 to 30 Slightly disagree (-2) Don't know Strongly agree (4) Don't know Strongly agree (4) Slightly agree (2) Don't know Strongly disagree (-4) Yes Yes Yes Yes No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 4 4 No Yes No Phone Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes Yes No No No Yes No Yes Yes Yes No No No Yes CAWI Adults 32 1000 0 0 1000 0 0 0 0 0 0 0 0 2100 0 2100 0 0 0 0 0 0 0 0 500 0 500 30 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 100 100 1500 1000 500 0 0 0 35 5 0 5 1 20 0 0 0 4 4 100 100 0 30 4 17.1963615 17.1963615 1288 Yes Yes Yes Yes No Yes Yes No Yes No No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes No Yes Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Yes Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 11 to 20 1 to 10 21 to 30 11 to 20 75% to 99% None None None None None None None 75% to 99% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No No No Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Urban England South West South Pakistani Minority Ethnic Yes Yes Yes Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 2000 1500 0 0 0 0 20 1 0 0 3 0 20 0 0 0 0 0 0 1 0 0 0 0 20 1 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 24 20 1 21 20 95.2380981 0 0 0 1 0 95.2380981 0 0 3 4 17.9305305 17.9305305 1302 Yes No Yes No No Yes No No Yes Yes No No No Yes No No No No No No Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) No No Yes Yes Yes No No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 41 to 50 41 to 50 41 to 50 None None 1 to 10 1% to 24% 41 to 50 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 11 to 20 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 None None 50% to 74% None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 75% to 99% 75% to 99% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 11 to 20 Have not spent anything 1 to 10 Have not spent anything 51 to 100 1 to 10 51 to 100 51 to 100 None None 1 to 10 1% to 24% 1 to 10 1% to 24% 51 to 100 75% to 99% 51 to 100 75% to 99% None 1 to 10 Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Strongly disagree (-4) Slightly disagree (-2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No Yes No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England London South White British White No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 27 0 0 0 0 0 0 4000 2000 2000 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 2000 2000 0 50 3 1 10 20 5 0 1 1 0 0 0 50 0 0 10 20 0 50 1 1 10 20 0 0 0 0 0 0 0 0 1 0 0 0 0 10 0 0 0 0 0 7 50 1 1 0 17 0 0 0 0 0 0 0 0 0 0 2 0 0 0 5 0 0 20 100 100 0 50 0 100 100 0 0 0 100 100 0 0 0 70 0 0 0 0 0 85 85 0 0 0 0 0 7000 4000 2000 0 1000 0 89 2 80 82 0 0 14.2857141 10 12.1951218 82 69 84.1463394 84.1463394 0 7 3 14.5680799 14.5680799 1308 Yes Yes Yes Yes Yes Yes No No No Yes No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No Yes No Yes No No Yes No No No Yes No No No Yes Yes No Yes No No No Yes No No No No No Yes No No No No No No Yes No Yes No No Yes No No No No No No No Yes No No No No No No Yes No No No No No Yes No No No No Yes No Yes No No No No No Yes No Yes Yes No No No No Yes No Yes No No No No No 51 to 100 51 to 100 51 to 100 11 to 20 11 to 20 Have not spent anything Have not spent anything About once a week (52) 1 to 10 None 1001+ 1 to 10 1 to 10 1 to 10 51 to 100 31 to 40 11 to 20 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 1% to 24% 100% 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 50% to 74% 1 to 10 100+ 51 to 100 51 to 100 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 11 to 20 1 to 10 11 to 20 11 to 20 1 to 10 25% to 49% 25% to 49% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 75% to 99% 75% to 99% 1 to 10 Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) 20 to 30 Have not spent anything 20 to 30 Have not spent anything None 31 to 40 21 to 30 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 100+ 31 to 40 Have not spent anything 51 to 100 51 to 100 41 to 50 11 to 20 11 to 20 21 to 30 11 to 20 50% to 74% 11 to 20 25% to 49% 11 to 20 25% to 49% 1 to 10 75% to 99% 1 to 10 75% to 99% 1 to 10 11 to 20 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes No No No No Yes No No No No No Yes Yes No Yes No Yes No No No No No No No No No Yes Yes No Yes Yes No Yes Yes No No No Yes Yes No No No No No Yes Yes No No No No No No No No Yes Yes No Yes No No Yes Yes No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England South East South White British White No Yes Yes No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 29 9200 6000 1200 2000 0 0 6000 4000 2000 6000 6000 0 12199 8800 999 2000 400 0 0 2200 0 2200 0 3500 2500 1000 1 9 10 20 0 4 0 6 0 6 0 1 0 0 0 12 0 0 0 6 0 18 0 1 0 6 0 8 0 1 0 6 6 4 0 0 0 1 0 10 0 1 10 0 0 0 9 0 0 4000 3 3 0 0 0 0 0 1 3 10 2 0 3 0 0 0 0 0 100 66.6666641 16.666666 0 100 0 60 0 0 0 44.4444427 40 55.5555573 55.5555573 90 94.4444427 0 0 0 0 0 100 0 100 0 100 38100 18700 3400 0 8800 7200 44 13 12 25 15 60 47.0588226 12 48 10 9 96 90 3 19 2 18.6235714 18.6235714 1312 Yes No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 1 to 10 Have not spent anything Have not spent anything Have not spent anything 51 to 100 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No Yes No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 25 10000 10000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11000 1000 0 0 0 10000 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 17.3453598 17.3453598 1319 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes Yes Yes No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 101 to 200 1 to 10 101 to 200 101 to 200 None None None None 11 to 20 1% to 24% 1% to 24% Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 Have not spent anything Have not spent anything Have not spent anything 41 to 50 Have not spent anything 101 to 200 11 to 20 101 to 200 101 to 200 None None None None None None 21 to 30 1% to 24% 21 to 30 1% to 24% None None Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes Yes No No Yes Yes No No No No No Yes Yes Yes Yes Yes Yes No No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No Yes Yes No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 0 0 0 0 0 0 0 0 130 0 0 1 10 12 10 0 0 0 0 6 120 0 0 1 10 6 130 0 0 1 10 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15.3846149 15.3846149 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 5000 0 0 0 5000 0 153 16 137 153 0 0 0 0 0 153 21 13.7254906 13.7254906 0 0 2 16.2971992 16.2971992 1338 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No No Yes No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 20 to 30 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 31 to 40 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 20 to 30 1 to 10 Have not spent anything 31 to 40 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 1 to 10 25% to 49% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No No Yes No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 5+ 5+ Yes No No Phone Urban England North West North Indian Minority Ethnic No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 3500 2500 1000 0 0 0 4200 3200 1000 0 0 0 0 0 0 0 0 500 500 0 0 3 0 3 0 1 0 2 0 0 0 0 0 0 0 3 0 0 0 2 0 3 0 0 0 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 100 0 0 0 7200 3000 1000 0 3200 0 7 2 3 5 2 40 25 0 0 3 3 100 100 0 2 5 17.3453598 17.3453598 1346 Yes No Yes No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No Yes No No No No No 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 1 to 10 1% to 24% 11 to 20 50% to 74% 50% to 74% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 20 to 30 11 to 20 21 to 30 11 to 20 11 to 20 None None None None None None 11 to 20 50% to 74% 11 to 20 50% to 74% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) No No Yes No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 4 4 Yes No No Phone Urban England South East South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 32 1600 1600 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 20 0 3 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 60 60 0 0 0 0 0 0 0 0 0 0 6600 2500 0 0 2500 1600 23 0 20 20 0 0 0 0 0 20 12 60 60 0 3 4 18.6235714 18.6235714 1348 Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes Yes No Yes Yes Yes No No Yes Yes Yes No No No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No Yes No No No No No Yes Yes No No Yes Yes No No Yes No No Yes Yes Yes No No Yes Yes No No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 101 to 200 101 to 200 11 to 20 101 to 200 101 to 200 100% 1% to 24% 101 to 200 50% to 74% 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 31 to 40 11 to 20 11 to 20 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% 1 to 10 51 to 100 11 to 20 31 to 40 2-3 times a week (130) 2-3 times a week (130) 31 to 40 11 to 20 11 to 20 21 to 30 1 to 10 25% to 49% 1% to 24% 11 to 20 50% to 74% 11 to 20 100% 100% 1 to 10 51 to 100 51 to 100 31 to 40 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 About once a week (52) About once a week (52) 31 to 40 11 to 20 11 to 20 21 to 30 11 to 20 50% to 74% 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) 20 to 30 1 to 10 1 to 10 11 to 20 2-3 times a week (130) 2-3 times a week (130) 41 to 50 11 to 20 11 to 20 31 to 40 None None 100% 1 to 10 1% to 24% 31 to 40 100% 100% 1 to 10 21 to 30 21 to 30 1 to 10 Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 1% to 24% None None None 1 to 10 100% 100% 11 to 20 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) 100+ 51 to 100 51 to 100 1 to 10 51 to 100 Have not spent anything 201 to 500 201 to 500 51 to 100 201 to 500 201 to 500 50% to 74% 11 to 20 1% to 24% 101 to 200 50% to 74% 51 to 100 100% 51 to 100 100% None 21 to 30 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 4 4 Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 4000 2000 2000 6000 2000 4000 9500 4000 2000 2000 500 500 500 3000 500 500 2000 3000 2500 500 170 3 31 35 41 20 150 2 15 15 20 5 20 0 15 15 20 0 170 2 30 30 40 5 170 1 10 20 0 1 5 0 2 4 1 0 120 0 20 5 1 0 5 0 1 20 10 40 4 0 0 0 0 0 0 0 0 0 1 1 5 1 15 100 2.94117641 70.5882339 0 100 50 0 0 100 100 33.3333321 18.181818 66.6666641 100 100 66.6666641 16 16.666666 16.666666 100 100 0 100 2.5 100 100 20 0 0 100 100 25000 9000 9000 500 6500 0 300 207 70 277 202 72.9241867 5.33333349 146 52.7075806 75 75 100 100 0 23 4 16.2971992 16.2971992 1349 Yes No Yes No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) Yes No Yes Yes No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No Yes No Yes No No Yes No No No No Yes No No Yes No No No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 101 to 200 51 to 100 51 to 100 101 to 200 11 to 20 1% to 24% 50% to 74% None None 101 to 200 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Most days (365) 11 to 20 11 to 20 11 to 20 11 to 20 100% 50% to 74% None None 100% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything 101 to 200 51 to 100 51 to 100 101 to 200 31 to 40 1% to 24% 21 to 30 50% to 74% None None 101 to 200 100% 101 to 200 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Yes Yes No No No No Yes Yes No No No No No No Yes No Yes Yes No No No No No No Yes Yes No No Yes Yes No No Yes No No Yes No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No Yes No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 27 3000 0 0 2000 1000 0 0 0 0 200 0 200 750 750 0 0 0 0 0 0 0 0 0 0 0 0 150 0 15 0 0 0 60 0 0 0 0 0 80 0 15 0 0 0 140 0 15 0 0 0 20 0 15 0 0 0 20 0 10 0 0 0 0 0 0 0 0 0 0 120 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 14.2857141 66.6666641 0 100 100 0 0 0 0 0 100 66.6666641 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3950 2000 1200 0 750 0 165 60 95 155 35 22.5806446 66.6666641 0 0 120 120 100 100 0 10 1 13.5682125 13.5682125 1361 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No Yes No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 0 0 0 0 0 2 2 100 100 0 0 2 16.6998844 16.6998844 1366 Yes No Yes No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No Once a day (365) Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No Yes No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None None None None Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) 31 to 40 31 to 40 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 50% to 74% 1 to 10 25% to 49% None None 25% to 49% 1 to 10 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 21 to 30 11 to 20 11 to 20 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 1% to 24% None None None 1% to 24% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Urban Wales Wales Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No Yes No Yes Yes No Yes No Yes Yes No Yes No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 34 0 0 0 0 0 0 3999 3999 0 3999 3999 0 998 998 0 0 0 0 0 0 0 0 0 0 0 0 10 8 2 2 0 0 0 0 0 0 0 0 10 6 0 2 0 0 10 6 0 2 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 33.3333321 50 33.3333321 0 33.3333321 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8996 7998 0 0 998 0 22 0 18 18 2 11.1111107 33.3333321 2 11.1111107 16 0 11.1111107 0 0 4 1 13.2410421 13.2410421 1367 Yes Yes Yes Yes No Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No Yes Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No No No No Yes No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 4 4 No Yes No Phone Urban England North East North African Minority Ethnic No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 25 0 0 0 0 0 0 0 0 0 10000 10000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10000 10000 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 17.3453598 17.3453598 1383 No No No No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Yes Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No Yes No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 750 750 0 0 0 0 0 0 0 0 0 350 350 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1100 350 0 0 750 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 16.9271107 16.9271107 1418 Yes No Yes No No Yes No No No Yes No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No Yes Yes No No No No No Yes Yes No Yes Yes No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 100+ 100+ 100+ Have not spent anything 1 to 10 1 to 10 11 to 20 11 to 20 About once a week (52) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 21 to 30 21 to 30 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a week (52) 21 to 30 1 to 10 11 to 20 21 to 30 None None None None None None None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 1 to 10 20 to 30 100+ 51 to 100 1 to 10 31 to 40 31 to 40 1 to 10 25% to 49% None None None None 1 to 10 1% to 24% 1 to 10 25% to 49% None 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time Any Yes No No No Yes Yes No 4 4 Yes No No Phone Urban England South East South White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 34 16000 13000 0 1000 500 1500 0 0 0 0 0 0 6000 3000 0 3000 0 0 0 0 0 0 0 4000 4000 0 20 2 1 6 23 8 0 1 0 1 3 0 10 1 1 3 20 0 10 2 1 4 23 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 10 0 0 2 0 8 100 0 0 0 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25000 8000 500 500 3000 13000 60 5 35 40 10 25 0 0 0 30 1 27.5 3.33333325 0 20 4 18.6235714 18.6235714 1419 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 21 to 30 None 21 to 30 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 31 to 40 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South West South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 29 60 0 0 60 0 0 0 0 0 0 0 0 1499 1499 0 0 0 0 0 0 0 0 0 1000 1000 0 30 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2559 1060 0 0 1499 0 33 0 0 0 0 0 0 0 0 0 0 0 0 0 33 2 18.6235714 18.6235714 1420 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No No No Yes No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ No Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 1025 0 0 1025 0 0 0 0 0 0 0 1001 1001 0 0 0 0 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2026 2026 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 5 14.5680799 14.5680799 1424 Yes Yes Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No 51 to 100 41 to 50 41 to 50 Have not spent anything 3 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 1 to 10 41 to 50 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No Yes No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No Yes Yes Yes 4 4 Yes No No Phone Urban Northern Ireland Northern Ireland North Any other Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 34 8000 5000 0 3000 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 1000 1000 0 2 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 10000 4000 0 0 1000 5000 6 0 2 2 0 0 0 0 0 2 2 100 100 0 4 4 13.2465572 13.2465572 1433 Yes Yes No No No No No No No Yes No No No Yes Yes Yes No Yes No No No No No No No No No No No No No Yes Yes No Yes Yes No No No No No No Several times a day (730) Yes No No No No Yes No Yes No No No Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No Yes No Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No No No No 41 to 50 3 3 Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) 31 to 40 1 to 10 11 to 20 21 to 30 1 to 10 25% to 49% 50% to 74% None None 11 to 20 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything 1 to 10 None 1 to 10 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 41 to 50 Have not spent anything 31 to 40 1 to 10 About once a month (12) 2-3 times a week (130) 21 to 30 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% None None None 11 to 20 100% 100% 51 to 100 41 to 50 41 to 50 2-3 times a week (130) 51 to 100 11 to 20 11 to 20 11 to 20 100% 1% to 24% 1 to 10 25% to 49% 100% 31 to 40 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 100+ 100+ 51 to 100 Have not spent anything 11 to 20 20 to 30 101 to 200 21 to 30 31 to 40 51 to 100 21 to 30 25% to 49% 11 to 20 1% to 24% 1 to 10 1% to 24% 31 to 40 100% 31 to 40 100% None 51 to 100 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No No Yes No No No No Yes No Yes No No No Yes Yes No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban England South East South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 26 5000 2500 0 2000 500 0 0 0 0 20000 20000 0 2600 1600 0 1000 0 0 0 4249 0 4000 249 10000 5000 5000 38 0 2 3 21 60 8 0 0 0 1 20 20 0 0 0 20 0 28 0 0 0 21 20 8 0 0 0 1 20 10 0 0 0 0 10 0 0 0 0 0 5 0 20 0 0 0 20 0 0 0 0 0 0 0 0 0 10 0 2 3 0 40 28.5714283 55.5555573 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.76190472 0 0 100 100 100 16.666666 25 0 100 42098 32000 5749 0 1849 2500 124 29 40 69 29 42.0289841 23.8095245 5 7.24637699 40 40 100 100 0 55 4 18.6235714 18.6235714 1434 Yes Yes Yes No Yes Yes No No No No No No No Yes Yes No No No No No Yes No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None 41 to 50 41 to 50 Have not spent anything 11 to 20 None 11 to 20 100+ 100+ Have not spent anything Have not spent anything Have not spent anything 51 to 100 21 to 30 1 to 10 1 to 10 None None None None None None None None None None None 21 to 30 Strongly disagree (-4) Don't know Slightly agree (2) Neither agree nor disagree (0) Don't know Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes Yes No Yes Yes 5+ 5+ No Yes No Phone Urban England East Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 31 9100 8000 0 1100 0 0 0 0 0 3000 3000 0 1500 0 0 1500 0 0 0 0 0 0 0 5000 5000 0 1 0 2 3 2 17 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 3 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 10600 0 0 0 8000 25 0 2 2 0 0 0 0 0 2 0 0 0 0 23 5 11.4110355 11.4110355 1436 Yes Yes Yes Yes No Yes No No No Yes No No No Yes Yes No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No Yes No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Every 2-3 weeks (30) Less often (6) 21 to 30 11 to 20 1 to 10 21 to 30 None None None None None None None Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 31 to 40 20 to 30 About once a month (12) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Most days (365) Most days (365) 51 to 100 21 to 30 21 to 30 51 to 100 51 to 100 100% None None None None None 100% Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 51 to 100 31 to 40 31 to 40 51 to 100 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 41 to 50 1 to 10 Have not spent anything Have not spent anything 101 to 200 51 to 100 51 to 100 101 to 200 51 to 100 25% to 49% None None None None None None None 25% to 49% None 1 to 10 Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban Scotland Scotland North White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 29 1500 0 0 0 1500 0 6998 3999 2999 0 0 0 599 0 0 0 0 599 0 0 0 0 0 0 0 0 25 5 2 55 70 0 20 2 1 30 35 0 5 2 1 25 35 0 25 4 2 55 70 0 0 4 0 55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 9097 3999 4499 599 0 0 157 88 68 156 59 37.8205147 0 0 0 97 0 37.8205147 0 0 1 1 16.5564308 16.5564308 1449 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No Yes No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes No No Yes No 3 3 No Yes No Phone Urban England East of England Midlands White British White No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 1700 700 1000 0 0 0 0 1000 1000 0 0 1000 1000 0 2 0 0 0 2 3 0 0 0 0 1 0 2 0 0 0 0 0 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1700 1000 0 0 700 0 7 1 2 3 0 0 0 0 0 3 0 0 0 0 4 3 16.9271107 16.9271107 1455 Yes No Yes No No Yes No No No No No Yes No Yes No No No Yes No No Yes No No No No No No No No Yes No No No No Yes No No No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes No No No No Yes No Yes No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 Have not spent anything 1 to 10 Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None None None None 50% to 74% None 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No No Yes Yes Yes Yes 5+ 5+ Yes Yes No Phone Rural England North East North White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 3000 2000 1000 0 0 0 0 1000 1000 0 0 299 0 299 3 0 0 0 1 3 3 0 0 0 0 2 0 0 0 0 0 1 3 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 2299 0 299 0 2000 0 7 5 1 6 3 50 0 0 0 3 0 50 0 0 1 5 17.3453598 17.3453598 1461 Yes No No No No Yes No No No No No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No Yes No No No No No No No Several times a day (730) Yes No Yes Yes No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No Yes Yes No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 11 to 20 None None None None None None 1 to 10 25% to 49% 1 to 10 25% to 49% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 Yes No No Phone Urban England North East North White British White Yes No No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No Yes No Yes Yes Yes No No No No Yes No Yes No Yes No Yes Yes CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 5 2 2 2 0 0 5 0 0 0 0 0 0 2 2 2 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 60 0 0 0 0 0 0 11 11 0 11 0 0 0 0 0 11 5 45.4545441 45.4545441 0 0 4 11.6929893 11.6929893 1480 Yes Yes Yes No No Yes Yes No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No Yes No Yes No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 51 to 100 51 to 100 51 to 100 None None 41 to 50 50% to 74% 51 to 100 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 51 to 100 51 to 100 None None None None 41 to 50 50% to 74% 51 to 100 100% 51 to 100 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) No Yes No Yes No Yes No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 0 1500 0 0 0 0 0 0 0 0 0 0 65 0 0 3 5 0 0 0 0 0 0 0 65 0 0 0 5 0 65 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 45 0 0 0 0 0 0 65 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 69.2307663 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1500 1500 0 0 0 0 73 0 70 70 0 0 0 45 64.2857132 70 70 100 100 0 3 3 18.6235714 18.6235714 1499 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Don't know Slightly disagree (-2) Yes Yes No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 500 0 0 1000 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 12.5546675 12.5546675 1501 Yes No Yes Yes No Yes No No Yes Yes No Yes No Yes No No No No No No Yes No No No No No No No No No No No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes Yes Yes Yes Yes No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 51 to 100 51 to 100 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 31 to 40 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything Less often (6) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 31 to 40 1 to 10 21 to 30 31 to 40 1 to 10 1% to 24% None None None 31 to 40 100% 100% 51 to 100 21 to 30 41 to 50 Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) 100+ 100+ 51 to 100 11 to 20 Have not spent anything Have not spent anything 51 to 100 21 to 30 41 to 50 51 to 100 21 to 30 25% to 49% None None None None 41 to 50 100% 41 to 50 100% None 11 to 20 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Yes Yes Yes No No No No No No No No No No Yes Yes No Yes No No No No No No No No No Yes No Yes Yes No Yes Yes No Yes Yes No No No Yes Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Rural England East of England Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 8000 7000 1000 8000 7000 1000 3600 0 1800 0 0 1800 0 600 0 600 0 8000 3000 5000 14 4 4 8 40 17 4 0 1 1 10 11 10 1 0 7 30 0 14 1 1 8 40 11 0 1 1 8 5 11 0 0 0 0 0 0 0 0 0 0 0 0 0 14 0 0 0 35 0 0 0 0 0 0 0 0 0 0 3 3 0 0 6 0 0 0 100 100 100 0 0 0 100 100 0 0 0 100 100 0 0 0 0 100 12.5 0 0 100 100 100 0 0 0 100 26400 17600 7000 1800 0 0 87 27 48 75 26 34.6666679 0 0 0 49 49 100 100 0 12 2 16.9271107 16.9271107 1509 Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 5+ 5+ Yes No No Phone Urban England South East South Bangladeshi Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 12.5546675 12.5546675 1523 Yes Yes Yes No No Yes No No Yes Yes Yes Yes No Yes Yes Yes No No No No Yes No No No No No Yes Yes No Yes Yes No Yes No Yes Yes Yes No No Yes No No Several times a day (730) Yes Yes No Yes No No Yes No Yes No No Yes Yes No Yes Yes Yes Yes No Yes No No No No No No No No No No Yes No No Yes Yes No Yes No No Yes No Yes No No Yes Yes No Yes Yes Yes Yes No Yes No No No No No No No No No No Yes No No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes Yes Yes Yes No 100+ 100+ 100+ 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 31 to 40 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 100% 100% 21 to 30 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 41 to 50 Less often (6) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 50% to 74% 100% 1 to 10 100+ 41 to 50 41 to 50 Have not spent anything 41 to 50 Have not spent anything 31 to 40 Have not spent anything Most days (365) 51 to 100 41 to 50 41 to 50 41 to 50 75% to 99% None None None 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 41 to 50 Have not spent anything 41 to 50 Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 51 to 100 100% None None None 100% 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 41 to 50 31 to 40 41 to 50 100+ 101 to 200 1 to 10 101 to 200 101 to 200 101 to 200 75% to 99% 21 to 30 1% to 24% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 41 to 50 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No Yes No No No No No Yes No No No No Yes No No Yes No No No No Yes No No No No Yes No Yes Yes No Yes No No No No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No Yes No Yes Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 38000 30000 4000 4000 0 0 5000 5000 0 10000 5000 5000 13300 5000 0 5000 0 3300 0 5000 0 5000 0 5000 5000 0 32 2 3 55 100 6 1 0 1 0 0 0 1 0 1 50 100 0 2 0 2 50 100 0 0 0 2 45 100 0 30 0 0 0 0 0 0 0 1 0 0 0 5 2 0 0 5 0 0 0 0 0 0 0 0 0 0 30 2 1 5 0 6 0 100 0 100 100 0 0 0 0 0 100 0 50 0 100 90 0 0 10 100 100 100 0 0 0 100 0 0 0 0 0 76300 29000 5000 3300 5000 34000 198 2 152 154 147 95.4545441 15.7068062 1 0.649350643 7 7 100 100 0 44 2 17.9305305 17.9305305 1524 Yes Yes Yes Yes No Yes Yes No No No No No No Yes Yes Yes No No No No Yes No No No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes No Yes Yes No Yes No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes No Yes Yes No Yes No No No No No No No No No No No No Yes No Yes No No No No No Yes No Yes No No No No No No No 51 to 100 3 3 Have not spent anything Have not spent anything 3 3 3 Every 2-3 weeks (30) 2-3 times a week (130) 51 to 100 31 to 40 51 to 100 51 to 100 31 to 40 25% to 49% None None None 51 to 100 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) 51 to 100 41 to 50 20 to 30 Every 2-3 weeks (30) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 21 to 30 21 to 30 Have not spent anything 1 to 10 Have not spent anything 21 to 30 Have not spent anything Less often (6) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% None None None 1 to 10 25% to 49% 100% 1 to 10 Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 11 to 20 21 to 30 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) 100+ 51 to 100 51 to 100 31 to 40 20 to 30 20 to 30 101 to 200 51 to 100 51 to 100 101 to 200 51 to 100 25% to 49% None None None None 51 to 100 100% 51 to 100 100% None 11 to 20 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Yes No No No No No No Yes No Yes No No No No No No No Yes Yes No No No No Yes No No No No Yes Yes No No No Yes No Yes No No No Yes No No No No No No Very confident (4) Yes No Yes No No No No No No No No No No No Yes No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban Wales Wales Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 8500 2500 0 0 3000 3000 8000 5000 3000 0 0 0 7000 3000 0 1000 0 3000 0 0 0 0 0 4500 1500 3000 100 16 3 13 10 15 40 10 3 1 2 0 60 1 0 10 8 5 100 11 3 11 10 5 40 11 0 11 0 5 0 0 0 0 0 0 0 0 0 0 0 0 3 60 0 3 0 10 0 0 0 0 0 0 0 0 0 0 5 0 2 0 10 40 0 0 100 100 100 0 0 0 100 0 0 0 100 100 100 0 0 27.272728 0 100 0 0 0 100 100 100 0 0 0 100 26000 7500 9000 4000 3000 2500 157 56 84 140 67 47.8571434 0 0 0 73 73 100 100 0 17 1 16.2971992 16.2971992 1529 Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 100+ 100+ 100+ 11 to 20 11 to 20 11 to 20 11 to 20 11 to 20 Most days (365) About once a week (52) About once a week (52) 101 to 200 21 to 30 101 to 200 101 to 200 11 to 20 1% to 24% 50% to 74% 11 to 20 1% to 24% 21 to 30 1% to 24% 25% to 49% 101 to 200 51 to 100 51 to 100 21 to 30 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 100+ 100+ Have not spent anything 1 to 10 100% 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 100% 1 to 10 100+ 100+ 100+ 11 to 20 51 to 100 Have not spent anything Have not spent anything Have not spent anything 31 to 40 75% to 99% 31 to 40 100+ 100+ 100+ Have not spent anything 31 to 40 100% 31 to 40 1 to 10 1 to 10 Have not spent anything 1 to 10 50% to 74% 1 to 10 100+ 100+ 11 to 20 1 to 10 100+ 100+ 201 to 500 21 to 30 101 to 200 101 to 200 11 to 20 1% to 24% 51 to 100 75% to 99% 11 to 20 1% to 24% 21 to 30 1% to 24% 21 to 30 25% to 49% 51 to 100 51 to 100 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 5+ 5+ Yes No No Phone Urban Scotland Scotland North White Irish White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 34 17700 12000 1200 1600 1700 1200 12300 12300 0 10000 10000 0 26500 19800 1200 5500 0 0 0 78901 11101 67800 0 222 222 0 158 1 1 34 34 2 23 0 0 0 0 0 112 0 0 0 0 0 135 0 0 0 0 0 12 0 0 0 0 0 23 1 1 32 34 1 12 0 0 0 0 0 0 23 0 0 0 0 0 123 56 56 0 0 0 0 0 23 1 1 34 34 2 8.88888931 65.7142868 8.88888931 18.6991863 25.9259262 0 100 0 0 0 0 100 0 0 0 0 94.1176453 0 0 0 0 0 100 0 0 0 0 50 0 0 0 132522 97422 1700 400 19800 13200 230 23 112 135 12 8.88888931 85.981308 12 8.88888931 123 23 25.9259262 18.6991863 56 95 5 13.4516592 13.4516592 1544 Yes Yes No No No Yes No No No Yes No Yes No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Once a day (365) No Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Don't know Slightly agree (2) Don't know Don't know No No No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No No No Yes Yes No 4 4 Yes No No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 17.3453598 17.3453598 1546 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 51 to 100 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 41 to 50 Have not spent anything Have not spent anything 51 to 100 Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No No No No No No No No No Yes No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 33 0 0 0 0 0 0 1000 1000 0 0 0 0 8500 6000 500 2000 0 0 0 999 0 999 0 500 500 0 0 1 0 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10499 4499 0 0 6000 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 16.9271107 16.9271107 1558 Yes Yes Yes Yes No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 51 to 100 3 11 to 20 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 Most days (365) Most days (365) Every 2-3 weeks (30) 101 to 200 21 to 30 11 to 20 31 to 40 31 to 40 100% 25% to 49% None None 100% 11 to 20 11 to 20 11 to 20 51 to 100 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 41 to 50 41 to 50 Have not spent anything 1 to 10 75% to 99% 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 41 to 50 21 to 30 1 to 10 Have not spent anything 21 to 30 Have not spent anything Have not spent anything 11 to 20 1 to 10 1% to 24% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 1 to 10 1 to 10 20 to 30 20 to 30 101 to 200 21 to 30 11 to 20 31 to 40 31 to 40 100% 51 to 100 25% to 49% None None None 100% 11 to 20 101 to 200 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England East Midlands Midlands White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes CAWI Adults 33 5258 1500 1000 900 259 1797 4575 4575 0 7500 7500 0 4700 1000 0 2500 0 0 1200 0 0 0 0 0 0 0 126 4 2 9 0 0 25 0 0 0 0 0 12 0 0 0 0 0 37 0 0 0 0 0 37 0 0 0 0 0 54 3 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 11 11 0 0 0 0 0 89 4 2 9 0 0 100 42.8571434 0 0 100 0 75 0 0 0 0 0 0 0 0 0 22.2222214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21033 15475 259 599 2200 2500 141 25 12 37 37 100 41.8439713 0 0 0 0 100 0 11 104 1 16.2971992 16.2971992 1562 Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No Several times a day (730) No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No 100+ 100+ 100+ Have not spent anything 3 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 31 to 40 31 to 40 Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 Have not spent anything Have not spent anything 20 to 30 100+ 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 1% to 24% 1 to 10 100% None 100% None 1 to 10 Strongly disagree (-4) Don't know Slightly disagree (-2) Strongly disagree (-4) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 No No Yes Phone Urban England North West North Any other white White No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 26 18000 15000 0 3000 0 0 4000 4000 0 0 0 0 2500 2500 0 0 0 0 0 0 0 0 0 0 0 0 1 4 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 0 0 0 0 0 100 0 0 0 100 0 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24500 7000 0 0 2500 15000 5 1 0 1 1 100 20 1 100 0 0 100 0 0 4 2 13.5682125 13.5682125 1565 Yes Yes Yes No No Yes No No No Yes No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England North West North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 5 0 10 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 15 0 5 5 0 0 0 0 0 5 5 100 100 0 10 2 17.3453598 17.3453598 1575 Yes Yes Yes No No No No No No No No No No Yes Yes No No No No Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) Yes No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No No Yes Yes Yes No 4 4 Yes Yes No Phone Urban England South West South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 100 100 0 0 4 18.6235714 18.6235714 1582 Yes No No No No No No No No No No No No Yes Yes Yes No Yes No No No No No No No No No No No Yes No No Yes No Yes No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Yes No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Rural England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 16.9271107 16.9271107 1585 Yes Yes Yes No No Yes No No No No No Yes No Yes Yes Yes No No No No Yes No No No No No No Yes No Yes No Yes Yes No No No Yes No No No No No Several times a day (730) Yes No No Yes Yes No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 75% to 99% 11 to 20 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 Have not spent anything Have not spent anything 11 to 20 1 to 10 31 to 40 11 to 20 11 to 20 31 to 40 None None 1 to 10 100% None None 31 to 40 100% 31 to 40 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes No Yes Yes No No No Yes No No No No No Yes No Yes No No No Yes Yes No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 31 1000 0 1000 0 0 0 1000 1000 0 0 0 0 2000 2000 0 0 0 0 0 1000 0 1000 0 0 0 0 6 2 2 15 8 0 6 0 2 5 0 0 0 0 0 10 8 0 6 0 2 15 8 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 12 6 0 2 15 8 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 100 100 0 100 0 0 0 0 0 0 100 100 0 0 0 80 100 100 0 0 0 100 100 0 0 0 0 0 5000 2000 0 0 2000 1000 33 13 18 31 0 0 100 0 0 31 31 100 100 0 2 3 17.9305305 17.9305305 1586 Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes No No Yes No No No No No No Yes No No No Yes No Yes No No No No Yes No No No Yes No Yes No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No Yes No No No No No No Yes No Yes No No No No No Yes No Yes No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) 51 to 100 51 to 100 Have not spent anything 1 to 10 50% to 74% 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 50% to 74% 1 to 10 100+ 41 to 50 41 to 50 Have not spent anything 31 to 40 1 to 10 1 to 10 Have not spent anything About once a week (52) Every 2-3 weeks (30) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 None None None 1 to 10 1% to 24% 1 to 10 25% to 49% None None None 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 100+ 100+ 1 to 10 1 to 10 41 to 50 Have not spent anything 31 to 40 11 to 20 1 to 10 11 to 20 None None 1 to 10 25% to 49% 1 to 10 1% to 24% None None None None 1 to 10 21 to 30 Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes No Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes No No No No No Yes No Yes No Yes No No No No No Very confident (4) No No No No No No No No No No No Yes No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No No Yes Yes Yes No 5+ 5+ Yes No No Phone Rural Northern Ireland Northern Ireland North Any other white White Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 33 0 0 0 0 0 0 10000 10000 0 10000 10000 0 10565 5000 0 3565 1000 1000 0 0 0 0 0 500 500 0 3 8 10 15 0 1 3 0 0 10 0 0 0 0 0 1 0 0 3 0 0 11 0 0 0 0 0 0 0 0 0 4 5 0 0 1 0 0 0 2 0 0 5 0 0 0 0 0 0 10 5 5 0 0 1 0 0 0 8 10 4 0 1 0 0 0 0 0 0 50 0 0 0 0 50 0 0 0 0 0 18.181818 45.4545441 0 0 0 0 0 0 0 0 100 0 0 0 31065 24065 1000 1000 5000 0 37 13 1 14 0 0 43.47826 2 14.2857141 14 0 0 0 6 23 5 8.92987251 8.92987251 1596 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No Once a day (365) No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 1 to 10 Have not spent anything Have not spent anything 41 to 50 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 1% to 24% None None None None None None None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 1 1 No No Yes Phone England East Midlands Midlands Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 28 0 0 0 0 0 0 500 500 0 0 0 0 4700 4700 0 0 0 0 0 0 0 0 0 500 500 0 0 1 0 0 2 5 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 5 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5700 1000 0 0 4700 0 8 1 1 2 0 0 16.666666 0 0 2 0 0 0 0 6 1 16.9271107 16.9271107 1599 Yes No No Yes No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes Yes No Yes Yes Yes No Yes No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes No No No Yes Yes No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No Yes No Yes No No No No No Yes Yes No No No No No No 100+ 51 to 100 51 to 100 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything About once a month (12) Less often (6) Less often (6) 21 to 30 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 1% to 24% 1 to 10 25% to 49% 1 to 10 100% 100% 21 to 30 21 to 30 21 to 30 11 to 20 Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything 1 to 10 100% 1 to 10 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 1 to 10 100% 100% 1 to 10 Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 11 to 20 1 to 10 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 100+ 51 to 100 1 to 10 Have not spent anything 11 to 20 51 to 100 21 to 30 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 100% 1 to 10 100% 21 to 30 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes No 4 4 Yes No No Phone Rural England West Midlands Midlands White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 32 10700 9500 0 1000 200 0 1000 1000 0 5000 5000 0 2200 1200 0 1000 0 0 0 0 0 0 0 1269 1000 269 22 1 1 2 1 3 2 0 0 1 1 1 5 0 0 0 0 0 7 0 0 1 1 1 5 0 0 0 1 0 3 0 1 0 0 0 3 0 0 0 0 0 1 2 0 0 1 0 1 30 30 30 0 0 0 0 0 15 1 1 1 0 2 71.4285736 15 42.8571434 100 100 0 0 0 0 0 0 100 0 0 0 0 0 0 100 100 100 100 0 0 0 100 0 0 0 100 100 20169 9000 469 0 1200 9500 30 5 5 10 6 60 15.3846149 3 30 4 4 100 100 30 20 4 11.4110355 11.4110355 1601 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No Yes No No No No No No No No No No Yes Yes No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 1 to 10 Have not spent anything Have not spent anything 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% Have not spent anything Have not spent anything Have not spent anything None 41 to 50 20 to 30 1 to 10 Have not spent anything 11 to 20 Have not spent anything 11 to 20 11 to 20 11 to 20 11 to 20 100% 1 to 10 75% to 99% None None None 100% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 No Yes No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 3000 3000 0 0 0 0 800 800 0 0 0 0 0 600 0 0 600 0 0 0 0 1 0 1 10 0 0 0 0 0 0 0 0 0 0 1 10 0 0 0 0 1 10 0 0 0 0 1 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 100 100 0 0 100 0 0 0 0 0 5000 3000 600 0 1400 0 12 0 11 11 11 100 83.3333359 0 0 0 0 100 0 0 1 3 13.2410421 13.2410421 1605 Yes No No No No Yes No No No Yes No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 50% to 74% 1 to 10 50% to 74% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 1 1 5 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 600 600 0 0 0 0 7 0 2 2 0 0 0 0 0 2 1 50 50 0 5 4 11.4110355 11.4110355 1612 No No No No Yes No No No No Yes No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No Several times a day (730) No No Yes No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% None None None None None None None 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) No No No No No No No Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban Wales Wales Midlands Indian Minority Ethnic No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 32 333 111 111 111 0 0 0 0 0 99 99 0 0 0 0 0 0 0 0 222 111 111 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 100 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 543 321 0 0 0 222 4 0 1 1 0 0 66.6666641 0 0 1 0 0 0 0 3 1 16.9271107 16.9271107 1613 Yes No No No No No No No No No No Yes No Yes No No No No No No No No Yes No No No No No No No Yes No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 21 to 30 21 to 30 21 to 30 None None 21 to 30 75% to 99% 21 to 30 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 31 to 40 11 to 20 11 to 20 About once a week (52) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 51 to 100 1 to 10 31 to 40 41 to 50 None None None None 21 to 30 50% to 74% 41 to 50 100% 41 to 50 100% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) No No No No No No No No No Yes No No No Yes No Yes Yes No No Yes No No No No No Yes No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3200 1200 2000 30 0 0 0 10 12 0 0 0 0 0 10 30 0 0 0 10 0 30 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 30 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 83.3333359 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 3200 1200 2000 0 0 0 52 10 40 50 0 0 0 25 50 50 50 100 100 0 2 2 18.6235714 18.6235714 1614 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11.4110355 11.4110355 1615 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 2 2 Yes No No Phone Urban England North West North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 11.6929893 11.6929893 1617 Yes No No No No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 41 to 50 21 to 30 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 41 to 50 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 5+ 5+ Yes No No Phone Rural Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 34 1000 0 0 1000 0 0 0 0 0 0 0 0 9000 5000 3000 1000 0 0 0 0 0 0 0 2000 2000 0 1 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9000 4000 0 0 5000 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 7 5 13.2465572 13.2465572 1620 Yes No No No No Yes No No No No Yes No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes Yes No No No No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No Yes No No 100+ 100+ 100+ Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 101 to 200 21 to 30 21 to 30 None None 1% to 24% 1 to 10 25% to 49% 21 to 30 100% 100% 51 to 100 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 21 to 30 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 11 to 20 Have not spent anything 20 to 30 11 to 20 100+ 101 to 200 41 to 50 41 to 50 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 31 to 40 100% 31 to 40 100% None 51 to 100 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Yes Yes No Yes No No No No No No No No No No No No No No No No Yes Yes No Yes Yes Yes No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No Yes Yes No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 16500 15000 0 1500 0 0 0 0 0 0 0 0 5000 2000 0 0 0 3000 0 0 0 0 0 0 0 0 130 0 0 6 8 0 0 0 0 0 0 0 30 0 0 6 8 0 30 0 0 6 8 0 0 0 0 6 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 30 0 0 0 8 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 10 33.3333321 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 21500 1500 0 3000 2000 15000 144 0 44 44 6 13.636364 9.43396187 10 22.727272 38 38 100 100 0 100 2 14.5680799 14.5680799 1621 Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No No No Yes No No No No No No No Yes No Yes No Yes Yes Yes No No No No No Several times a day (730) No No No No No No No Yes No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 Have not spent anything 11 to 20 About once a week (52) 11 to 20 11 to 20 11 to 20 1 to 10 25% to 49% None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 Have not spent anything 11 to 20 Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 1 to 10 11 to 20 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None None Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No Yes No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 0 0 0 0 0 0 0 0 1500 0 1500 0 0 0 0 2 12 0 0 0 0 0 12 0 0 0 0 2 0 0 0 0 0 2 12 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 33.3333321 0 0 100 100 1900 0 1500 0 400 0 14 12 2 14 4 28.5714283 0 0 0 10 10 100 100 0 0 2 16.9271107 16.9271107 1631 Yes Yes Yes Yes No Yes Yes No No No No Yes No Yes Yes Yes No No No No Yes No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes No No Yes No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 About once a month (12) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything 21 to 30 11 to 20 1 to 10 21 to 30 21 to 30 100% None None None None None 100% None None Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No No Yes No Yes No No No No Yes No No No No Yes No No No No No No No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 27 1399 0 0 0 799 600 0 0 0 0 0 0 600 0 0 0 600 0 0 0 0 0 0 0 0 0 20 0 0 3 0 0 20 0 0 0 0 0 0 0 0 3 0 0 20 0 0 3 0 0 20 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 1599 0 1399 200 0 0 23 20 3 23 23 100 0 0 0 0 0 100 0 0 0 2 16.2971992 16.2971992 1634 Yes Yes Yes No No Yes No No No No No No No Yes Yes Yes No No No No Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes Yes No Yes Yes No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No No No No No No Yes Yes No Yes Yes No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 2-3 times a week (130) 41 to 50 11 to 20 11 to 20 31 to 40 1 to 10 1% to 24% None 1 to 10 1% to 24% 31 to 40 100% 100% 11 to 20 11 to 20 11 to 20 1 to 10 Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 21 to 30 11 to 20 11 to 20 21 to 30 None None 11 to 20 50% to 74% 11 to 20 50% to 74% 50% to 74% 11 to 20 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 1 to 10 100% 100% 1 to 10 Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 51 to 100 31 to 40 41 to 50 51 to 100 1 to 10 1% to 24% None None 11 to 20 1% to 24% 51 to 100 75% to 99% 51 to 100 75% to 99% 11 to 20 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No Yes No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South West South White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 32 700 0 0 500 200 0 0 0 0 0 0 0 1600 0 600 500 500 0 0 1000 1000 0 0 1000 1000 0 42 2 30 7 4 2 20 0 15 1 0 0 20 2 15 5 2 0 40 2 30 6 2 0 2 1 0 0 0 0 0 0 0 0 0 0 2 0 15 0 0 0 6 38 1 15 6 0 0 20 20 20 0 0 0 0 0 2 0 0 1 2 2 5 0 5 100 100 50 0 0 100 100 0 0 50 50 50 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 2700 2000 700 0 0 0 87 36 44 80 3 3.75 0 17 21.25 77 60 78.75 77.922081 20 7 2 18.6235714 18.6235714 1641 Yes Yes Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No Several times a day (730) No No No No Yes Yes No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% 100% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 1 to 10 Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None 1 to 10 25% to 49% 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone England South East South White British White No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 300 0 0 0 300 0 0 500 0 0 500 0 0 0 0 0 0 2 1 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 50 100 100 100 0 0 0 100 100 0 0 0 0 0 1300 0 800 0 500 0 3 3 0 3 1 33.3333321 0 1 33.3333321 2 2 100 100 0 0 3 18.6235714 18.6235714 1650 Yes No No No No Yes No No No No No No No Yes No Yes No No No Yes Yes No No No No No No No No Yes No No Yes No Yes No Yes No No No No No Several times a day (730) No No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 100+ 100+ 1 to 10 Less often (6) About once a month (12) 101 to 200 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% None None None 11 to 20 100% 100% 101 to 200 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 100+ 1 to 10 Have not spent anything 11 to 20 51 to 100 101 to 200 1 to 10 21 to 30 21 to 30 1 to 10 1% to 24% None None None None 21 to 30 100% 21 to 30 100% None 101 to 200 Slightly agree (2) Don't know Strongly agree (4) Slightly agree (2) Don't know Slightly disagree (-2) Don't know Don't know No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes Yes No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 26 8000 8000 0 0 0 0 0 0 0 0 0 0 2200 1200 0 1000 0 0 0 2000 0 2000 0 50900 50000 900 0 0 0 2 4 172 0 0 0 0 0 2 0 0 0 0 4 20 0 0 0 0 4 22 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 20 0 0 0 0 0 0 0 0 0 0 0 2 0 150 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 9.090909 0 0 100 100 63100 53000 900 0 1200 8000 178 2 24 26 2 7.69230747 0 0 0 24 24 100 100 0 152 3 16.9271107 16.9271107 1658 Yes Yes No No Yes No Yes No No No No No No Yes Yes No No No Yes No Yes No Yes No No No No No No No Yes No Yes Yes No No Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) No No No No No No No No Yes No No No No Slightly confident (3) No No No No No No Yes No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 3 3 No Yes No Phone Rural England South East South White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2 0 0 0 0 0 2 2 100 100 0 0 3 18.6235714 18.6235714 1661 Yes No No No No Yes No No No Yes No Yes No Yes No No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes No No No Yes No No No Yes Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No Yes No No No Yes No No No Yes Yes No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 11 to 20 11 to 20 31 to 40 None None None None None None 31 to 40 100% 31 to 40 100% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes Yes Yes Yes No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No No Slightly confident (3) No No No No No No No No No No Yes No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 No No Yes Phone Urban England London South Indian Minority Ethnic Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 4 10 5 6 4 0 4 0 0 5 4 0 0 10 5 1 8 0 4 10 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 8 0 4 10 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 100 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 33 13 20 33 0 0 0 0 0 33 33 100 100 0 0 3 18.6235714 18.6235714 1662 Yes No Yes No No Yes Yes No No No No Yes No Yes No No No No No No Yes No No No No No Yes No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No Yes Yes Yes No No Yes No No No Yes Yes No No No No No Yes No No No No No No No No No No No No Yes No Yes No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No Yes Yes No No Yes No No 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 11 to 20 Less often (6) About once a month (12) 31 to 40 11 to 20 11 to 20 31 to 40 11 to 20 50% to 74% 1% to 24% 11 to 20 50% to 74% 1 to 10 1% to 24% 50% to 74% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 1 to 10 Have not spent anything 1 to 10 Have not spent anything 1 to 10 11 to 20 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) 20 to 30 11 to 20 1 to 10 Have not spent anything 1 to 10 None 1 to 10 21 to 30 21 to 30 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% None None 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 31 to 40 11 to 20 20 to 30 Have not spent anything Have not spent anything 41 to 50 21 to 30 11 to 20 41 to 50 21 to 30 50% to 74% 1 to 10 1% to 24% 11 to 20 25% to 49% 1 to 10 1% to 24% 1 to 10 50% to 74% None 1 to 10 Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes Yes Yes No Yes Yes No Yes No No No No No No No Yes Yes Yes Yes Yes Yes No No Yes No No No No Yes Yes No Yes No Yes No Yes No No No No No No No No No No Yes Yes No Yes No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 3 3 No Yes No Phone Urban England South East South White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 30 2500 0 0 0 1000 1500 0 0 0 0 0 0 3300 0 1000 0 500 1800 0 2500 1500 1000 0 2500 2500 0 40 0 0 6 1 3 20 0 0 6 0 2 20 0 0 0 0 0 40 0 0 6 0 2 20 0 0 6 0 1 2 0 0 0 0 1 20 0 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 50 10 50 10 55 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 50 50 0 100 100 7300 3500 1500 2300 0 0 50 28 20 48 27 56.25 10.3448277 20 41.6666679 21 3 62.5 14.2857141 0 2 3 18.6235714 18.6235714 1663 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes No No Yes No No No No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No Yes No Yes No No No No No Yes Yes Yes Yes No Yes No No No No No Yes Yes No Yes No Yes No No No No No Yes Yes No Yes No Yes No No No No No No Yes Yes Yes No Yes No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything About once a week (52) About once a week (52) About once a week (52) 31 to 40 11 to 20 11 to 20 31 to 40 None None None None None 31 to 40 100% 100% 11 to 20 1 to 10 51 to 100 51 to 100 Have not spent anything Most days (365) 1 to 10 None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 21 to 30 21 to 30 41 to 50 None None None None None None 41 to 50 100% 41 to 50 100% 21 to 30 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban Northern Ireland Northern Ireland North White Irish White Yes No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes No Yes No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 9000 9000 0 9000 9000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37 3 10 0 0 0 17 0 5 0 0 0 17 0 5 0 0 0 34 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 0 10 0 0 0 0 0 17 4 5 0 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 18000 18000 0 0 0 0 50 22 22 44 0 0 0 0 0 44 44 100 100 26 6 4 10.3619699 10.3619699 1667 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% 1 to 10 None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No No Yes No No Yes 2 2 Yes No No Phone Urban England Yorkshire and The Humber North White British White No Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 3 0 0 0 0 0 3 3 100 100 1 0 2 11.6929893 11.6929893 1668 Yes Yes No Yes Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No No Yes Yes No Yes Yes Yes No No No No No No No Once a day (365) No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 21 to 30 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 100% 1 to 10 20 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 41 to 50 20 to 30 Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 50% to 74% Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No Yes Yes Yes 5+ 5+ Yes No No Phone Urban England London South White & Asian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 26 303 101 101 101 0 0 300 300 0 101 101 0 2310 505 505 600 0 0 700 2412 1212 1200 0 500 500 0 1 1 1 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 4209 2802 0 0 1205 202 7 0 0 0 0 0 57.1428566 0 0 0 0 0 0 0 7 5 14.5680799 14.5680799 1679 Yes No No No Yes Yes Yes No No No No No No Yes No Yes No No No No Yes No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 41 to 50 1 to 10 51 to 100 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 Have not spent anything Have not spent anything 41 to 50 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No Yes No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes Yes No Phone Urban Northern Ireland Northern Ireland North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 16000 5000 1000 10000 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 10000 0 0 5000 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 12.7536097 12.7536097 1685 Yes No Yes No No No No No No Yes No Yes No Yes No No No No Yes Yes Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes No Yes Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes Yes No Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 1 to 10 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Yes Yes Yes Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No Yes No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 3 3 Yes Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 34 100 0 0 0 100 0 6000 6000 0 0 0 0 1500 0 0 1500 0 0 0 0 0 0 0 0 0 0 2 3 3 3 0 0 2 0 3 0 0 0 0 0 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7600 7500 100 0 0 0 11 5 0 5 0 0 0 0 0 5 5 100 100 0 6 3 13.2410421 13.2410421 1688 Yes Yes No No No Yes Yes No No No No No No Yes Yes No No No No No No No Yes No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No Yes Yes Yes No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes Yes No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything Have not spent anything Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 41 to 50 Have not spent anything 41 to 50 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) No Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes Yes 4 4 No Yes No Phone Urban England South West South Chinese Minority Ethnic Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 3000 3000 0 0 0 0 4500 0 0 4500 0 0 0 4500 0 4500 0 0 0 0 0 2 0 3 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 3 0 0 0 0 0 0 0 100 0 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 12000 12000 0 0 0 0 6 0 2 2 1 50 0 1 50 1 1 100 100 0 4 4 17.9305305 17.9305305 1695 Yes Yes No No No No No No No Yes Yes Yes No Yes Yes No No Yes No No No No No No No No No Yes No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes Yes No No No No Yes No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 41 to 50 1 to 10 51 to 100 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 Have not spent anything 20 to 30 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 11 to 20 None 11 to 20 100+ 100+ Have not spent anything Have not spent anything 41 to 50 41 to 50 21 to 30 1 to 10 1 to 10 1 to 10 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 21 to 30 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) No Yes No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No No No No No Yes No No No No No No No No Yes No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No Yes No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban Wales Wales Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 4500 4500 0 0 0 0 0 0 0 0 0 0 16000 5000 1000 10000 0 0 0 2500 0 2500 0 2500 2500 0 2 0 0 10 1 15 0 0 0 0 0 0 2 0 0 0 1 0 2 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 10 0 15 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 24500 15000 0 0 5000 4500 28 0 3 3 2 66.6666641 0 0 0 1 1 100 100 0 25 2 16.2971992 16.2971992 1699 Yes No No No No Yes No No No No No Yes No Yes No Yes No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 1 to 10 11 to 20 Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes No No Yes No No No No Yes No No Yes No No No Yes No No No No Yes No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 1200 0 0 1000 200 0 0 0 0 0 0 0 2500 0 0 1000 0 1500 0 0 0 0 0 2000 2000 0 7 0 0 4 5 5 5 0 0 0 0 0 0 0 0 2 5 0 5 0 0 2 5 0 5 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 2 0 0 2 0 5 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 5700 4000 200 1500 0 0 21 5 7 12 7 58.3333321 0 0 0 5 5 100 100 0 9 1 11.4110355 11.4110355 1700 Yes Yes No No No Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 50% to 74% None None 50% to 74% 1 to 10 1 to 10 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything 21 to 30 1 to 10 None 1 to 10 31 to 40 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything Have not spent anything 51 to 100 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None 1 to 10 50% to 74% None None None 50% to 74% 1 to 10 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No No Yes No Yes Yes 4 4 Yes No No Phone Urban England London South White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 29 0 0 0 0 0 0 2000 2000 0 2000 2000 0 12000 3000 3000 3000 0 0 3000 4000 2000 2000 0 2000 2000 0 10 1 1 1 1 1 5 0 0 0 0 0 5 0 0 0 0 0 10 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 5 5 5 0 0 0 0 0 0 1 1 1 1 1 50 0 50 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17000 11000 0 0 6000 0 15 5 5 10 5 50 0 5 50 5 0 50 0 5 5 4 18.6235714 18.6235714 1701 Yes Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 900 900 0 4 0 0 0 0 3 2 0 0 0 0 0 2 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 900 900 0 0 0 0 7 2 2 4 4 100 0 0 0 0 0 100 0 0 3 4 16.9271107 16.9271107 1705 Yes No No No No Yes No No No No No Yes No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 1250 1250 0 0 0 0 0 0 0 0 0 370 370 0 0 0 0 0 14 1 0 0 0 0 0 0 0 0 0 0 14 0 0 0 0 0 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1620 370 0 0 1250 0 15 0 14 14 0 0 0 0 0 14 14 100 100 0 1 2 18.6235714 18.6235714 1712 Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 3 3 No Yes No Phone Urban England North West North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 2 4 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2000 2000 0 0 0 0 6 0 2 2 0 0 0 0 0 2 2 100 100 0 4 3 17.3453598 17.3453598 1719 Yes No Yes No Yes Yes No No No Yes No No No Yes No No No No No Yes Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No Yes No No No No No Yes No Yes No No No No No Yes No Yes No No Yes No No No No Yes No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 31 to 40 1 to 10 11 to 20 21 to 30 1 to 10 25% to 49% 50% to 74% None None 11 to 20 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 20 to 30 1 to 10 Have not spent anything 1 to 10 Have not spent anything 41 to 50 1 to 10 11 to 20 21 to 30 1 to 10 25% to 49% 1 to 10 25% to 49% None None 11 to 20 100% 11 to 20 100% None 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes No No No Yes No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No No Yes No Yes No 3 3 Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 1500 0 0 1000 500 0 0 0 0 0 0 0 600 0 0 0 0 0 600 0 0 0 0 2000 2000 0 38 0 0 0 0 5 10 0 0 0 0 0 20 0 0 0 0 0 30 0 0 0 0 0 10 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 5 33.3333321 50 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4100 3000 500 0 600 0 43 10 20 30 10 33.3333321 39.1304359 0 0 20 20 100 100 0 13 3 16.9271107 16.9271107 1720 Yes No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Don't know Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Don't know No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No Not at all confident (1) Yes No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 4 4 Yes No No Phone Rural England West Midlands Midlands White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2000 0 0 0 2000 0 1 0 1 1 0 0 0 0 0 1 1 100 100 0 0 4 16.9271107 16.9271107 1723 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Don't know No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 16.9271107 16.9271107 1727 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No Yes No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 12.5546675 12.5546675 1728 Yes No No No No Yes No No No No No Yes No Yes No No No No No No No No No No No No No No Yes Yes Yes No Yes No No Yes No No No No No No Several times a day (730) No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 100+ Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 21 to 30 Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Strongly disagree (-4) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No Yes No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 3 3 No No Yes Phone Urban England North East North Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 28 0 0 0 0 0 0 1000 1000 0 70000 50000 20000 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 10 11 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 0 1 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72000 52000 20000 0 0 0 22 1 0 1 1 100 0 0 0 0 0 100 0 0 21 3 13.5682125 13.5682125 1729 Yes No Yes Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No Several times a day (730) No Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes Yes Yes No No Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) No Yes No No Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No Very confident (4) No No Yes No No No No No No No Yes No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Rural Scotland Scotland North White British White No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 0 0 0 0 0 0 0 0 0 0 5 1 0 0 0 0 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 0 0 0 0 0 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 6 6 0 0 0 6 100 6 6 100 100 0 0 3 13.4516592 13.4516592 1731 Yes No Yes No No No No Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes No Yes No No No No No No No No Yes No No Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No Yes No No No No 100+ 51 to 100 41 to 50 1 to 10 1 to 10 Have not spent anything 100+ 100+ 2-3 times a week (130) 51 to 100 31 to 40 31 to 40 21 to 30 75% to 99% 1% to 24% 1 to 10 25% to 49% 1 to 10 50% to 74% 75% to 99% 11 to 20 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) 1 to 10 1 to 10 1 to 10 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 1% to 24% 1 to 10 25% to 49% 1 to 10 50% to 74% 75% to 99% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 100% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 41 to 50 1 to 10 41 to 50 20 to 30 51 to 100 51 to 100 31 to 40 1 to 10 41 to 50 31 to 40 50% to 74% 11 to 20 1% to 24% 11 to 20 25% to 49% 1 to 10 50% to 74% 1 to 10 75% to 99% None 21 to 30 Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No Yes No Yes No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands White British White Yes No No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 28 19597 5000 699 899 0 13197 600 400 200 0 0 0 4000 1500 0 2000 0 0 500 1300 700 200 400 1000 1000 0 60 8 0 2 3 2 40 0 0 0 0 0 0 5 0 0 2 0 40 5 0 0 2 0 30 3 0 0 1 0 10 1 0 0 2 0 10 2 0 0 1 0 0 5 1 0 0 1 0 0 0 0 0 0 0 0 0 20 3 0 2 1 2 75 20 25 50 87.5 60 16.666666 40 50 80 0 0 0 0 0 0 0 0 0 0 0 50 100 50 100 100 0 0 0 0 0 17597 4499 600 4399 2400 5699 75 40 7 47 34 72.3404236 20.967741 13 27.6595745 13 7 87.2340393 53.8461533 0 28 2 16.9271107 16.9271107 1736 Yes No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Don't know Don't know Strongly agree (4) Strongly agree (4) Don't know Don't know Yes Yes No Yes No No No Yes Yes No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 No Yes No Phone England London South African Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 31 500 0 0 500 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 3 1 0 1 0 0 50 0 0 1 1 100 100 0 2 3 18.6235714 18.6235714 1749 Yes No No No No Yes No No No Yes No Yes No Yes No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No Yes No No Yes No No No No Yes No No No No No Yes No No No Yes No No No No No No Yes No No No Yes No No No Yes No No Yes No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No No Yes No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 1 to 10 Less often (6) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None None 1 to 10 1% to 24% 1 to 10 25% to 49% 25% to 49% 1 to 10 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 31 to 40 11 to 20 11 to 20 31 to 40 None None None None 1 to 10 1% to 24% 21 to 30 50% to 74% 21 to 30 50% to 74% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes Yes Yes Yes No No No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Very confident (4) No No No No No No No No No No No No No Yes No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 No Yes No Phone Urban England South East South White & Black African Minority Ethnic Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 0 600 0 0 0 0 0 0 1700 1200 500 14 0 0 2 0 19 7 0 0 0 0 8 7 0 0 2 0 8 14 0 0 2 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 14 0 0 2 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 18.75 31.25 31.25 2300 1200 1100 0 0 0 35 15 17 32 0 0 0 3 9.375 32 21 65.625 65.625 0 3 3 17.9305305 17.9305305 1751 Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) No No No No No No No No No No No No Yes No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England London South Bangladeshi Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 17.9305305 17.9305305 1755 Yes Yes No No No Yes No No No Yes No Yes No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No Yes No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes Yes No No No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a month (12) 21 to 30 1 to 10 1 to 10 11 to 20 11 to 20 75% to 99% 25% to 49% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 31 to 40 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 11 to 20 Have not spent anything 51 to 100 Have not spent anything 41 to 50 1 to 10 11 to 20 21 to 30 11 to 20 75% to 99% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 11 to 20 Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 4 4 Yes Yes No Phone Urban England North West North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 25 2500 0 0 1500 1000 0 0 0 0 0 0 0 6900 4000 1000 1000 0 0 900 500 0 0 500 700 700 0 27 0 0 4 5 5 10 0 0 0 0 0 10 0 0 0 5 0 20 0 0 0 5 0 15 0 0 0 5 0 10 0 0 0 0 0 5 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 4 0 5 75 45.4545441 25 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 10100 3200 1500 0 5400 0 41 10 15 25 20 80 27.7777786 5 20 5 5 100 100 0 16 4 17.3453598 17.3453598 1756 Yes No Yes No No Yes No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No Yes No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No Yes No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 21 to 30 1 to 10 1 to 10 None None 50% to 74% None None 1 to 10 1% to 24% 1% to 24% 11 to 20 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything Less often (6) About once a week (52) 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 11 to 20 Have not spent anything 11 to 20 About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None None 50% to 74% 51 to 100 1 to 10 1 to 10 Have not spent anything 51 to 100 Have not spent anything 11 to 20 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 100+ 41 to 50 51 to 100 Have not spent anything 2-3 times a week (130) 51 to 100 21 to 30 21 to 30 None None 1% to 24% None None 21 to 30 100% 100% 21 to 30 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 11 to 20 11 to 20 1 to 10 Have not spent anything 101 to 200 1 to 10 31 to 40 41 to 50 1 to 10 1% to 24% 11 to 20 1% to 24% None None 31 to 40 75% to 99% 31 to 40 75% to 99% None 51 to 100 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No Yes No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 3 3 No Yes No Phone Urban England East Midlands Midlands Any other white White Yes No No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 25 500 0 0 500 0 0 4500 4500 0 1600 0 1600 9000 1000 0 6500 0 1500 0 10500 4500 6000 0 4000 4000 0 21 13 3 10 60 5 5 2 2 0 0 0 0 2 1 2 30 0 5 4 3 2 30 0 0 0 2 0 0 0 8 0 0 0 3 0 0 0 0 0 0 0 0 1 4 0 2 30 0 0 0 0 0 0 0 0 0 16 9 0 8 30 5 0 50 0 20 20 0 0 0 100 100 66.6666641 0 0 0 66.6666641 0 0 0 0 100 100 0 10 0 100 100 0 0 0 0 0 25600 21500 1600 1500 1000 0 112 9 35 44 2 4.5454545 15.7142859 0 0 42 37 88.6363602 88.0952377 0 68 3 16.9271107 16.9271107 1762 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Slightly disagree (-2) Slightly agree (2) Don't know Don't know Don't know Don't know No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 4 4 No Yes No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 795 0 795 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 795 795 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12.5546675 12.5546675 1765 Yes Yes Yes Yes No Yes No No No No No No No Yes No Yes No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No Yes No No No No No No No No No Yes Yes Yes Yes No No Yes Yes No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No Yes No Yes Yes No No No No 41 to 50 31 to 40 3 1 to 10 1 to 10 Have not spent anything Have not spent anything 11 to 20 75% to 99% 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 21 to 30 21 to 30 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 11 to 20 Have not spent anything Have not spent anything 20 to 30 31 to 40 21 to 30 1 to 10 1 to 10 1 to 10 100% 11 to 20 50% to 74% None None None 100% None 21 to 30 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No Yes No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No No Yes No Yes No 4 4 Yes No No Phone Rural England South East South White British White No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 31 4500 3000 1000 500 0 0 1000 1000 0 0 0 0 2800 2000 0 0 0 0 800 1000 600 400 0 0 0 0 20 2 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 15 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 2 0 0 1 0 0 75 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 8700 1900 0 0 2800 4000 24 0 1 1 1 100 66.6666641 0 0 0 0 100 0 0 23 4 14.5680799 14.5680799 1766 Yes Yes Yes Yes No Yes No No Yes No Yes Yes Yes Yes Yes Yes No No No No Yes No Yes No No No No No No Yes No Yes Yes No Yes Yes No No No No No No Several times a day (730) Yes No Yes Yes No No No Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes Yes No No No Yes No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No Yes Yes Yes No Yes No Yes Yes No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 31 to 40 20 to 30 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 1 to 10 51 to 100 31 to 40 21 to 30 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 1% to 24% 100% 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 11 to 20 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 None None None 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 100+ 41 to 50 Have not spent anything Have not spent anything Have not spent anything 21 to 30 11 to 20 1 to 10 21 to 30 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 1% to 24% 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Yes No Yes No Yes No No Yes Yes No No No No Yes No No Yes No Yes No No Yes No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 6400 4000 2400 6400 4000 2400 2000 0 0 2000 0 0 0 2000 0 2000 0 2000 2000 0 1 3 6 2 2 12 0 2 5 0 0 10 1 0 0 1 2 0 1 2 5 1 2 10 0 2 5 0 0 0 0 3 0 0 0 0 1 0 1 0 0 1 0 1 0 0 1 2 10 0 0 0 0 0 0 0 0 0 1 1 1 0 2 0 0 100 100 100 100 100 0 0 100 100 0 20 0 100 0 0 0 0 100 100 0 0 0 100 100 0 0 10 100 100 18800 14000 4800 0 0 0 26 17 4 21 7 33.3333321 25 3 14.2857141 14 14 100 100 0 5 2 17.9305305 17.9305305 1767 Yes Yes No No No No No No No Yes No Yes No Yes Yes No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) No Yes Yes No No No No No Yes No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No Yes Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 5+ 5+ No Yes No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 2 7 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3000 3000 0 0 0 0 9 0 2 2 0 0 0 0 0 2 2 100 100 0 7 5 16.9271107 16.9271107 1769 Yes No No No Yes Yes No No Yes No No Yes No Yes No Yes No Yes No No No No No No No No No No No Yes No Yes Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No Yes No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No Yes Yes No 4 4 Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 1200 0 200 1000 0 0 0 0 0 0 0 600 600 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1600 1600 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 13.2410421 13.2410421 1771 Yes No No No Yes Yes No No No No No No No Yes No No No No No Yes No No No No No No No Yes No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No Yes No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 Have not spent anything Have not spent anything 1 to 10 41 to 50 1 to 10 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Yes No No Yes Yes No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes Yes Yes Yes Yes 5+ 5+ Yes No No Phone Urban England North West North White British White Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No CAWI Adults 32 5000 5000 0 0 0 0 5000 5000 0 0 0 0 1000 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11000 5000 0 0 1000 5000 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 5 13.5682125 13.5682125 1777 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 51 to 100 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None 1 to 10 50% to 74% None None 25% to 49% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 Have not spent anything 20 to 30 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None 1 to 10 50% to 74% None None None 25% to 49% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England North West North White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 28 9000 0 0 0 0 9000 3000 3000 0 1000 1000 0 1499 900 599 0 0 0 0 0 0 0 0 0 0 0 5 2 3 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 0 0 0 40 0 60 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7900 4000 0 3000 900 0 10 5 0 5 2 40 0 3 60 3 0 40 0 0 5 1 13.5682125 13.5682125 1778 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No Yes No No No No Yes No No No Yes Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 51 to 100 3 3 Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 101 to 200 1 to 10 51 to 100 101 to 200 None None 100% 1 to 10 1% to 24% 101 to 200 100% 100% 21 to 30 Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 100+ 21 to 30 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None None None 1 to 10 100% 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 31 to 40 Have not spent anything 31 to 40 Have not spent anything Most days (365) 2-3 times a week (130) 51 to 100 41 to 50 11 to 20 51 to 100 None None None None 51 to 100 75% to 99% 75% to 99% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 Have not spent anything 100+ 20 to 30 201 to 500 51 to 100 101 to 200 101 to 200 1 to 10 1% to 24% 21 to 30 50% to 74% 1 to 10 1% to 24% 101 to 200 75% to 99% 101 to 200 75% to 99% None 41 to 50 Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) No Yes No Yes No No No No Yes No No No No No No No No No No No No No No No No No Yes No No Yes Yes No Yes No No Yes No No No No No No No No No No No No Yes No No No No No Yes No No No Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban Scotland Scotland North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 30 5300 2500 0 2000 800 0 0 0 0 0 0 0 18600 15000 2100 1500 0 0 0 3500 0 3500 0 1000 1000 0 138 0 0 8 70 10 8 0 0 3 50 0 100 0 0 2 20 0 108 0 0 5 70 0 0 0 0 2 0 0 30 0 0 0 0 0 10 0 0 0 0 0 0 108 0 0 3 65 0 0 0 0 0 0 0 0 0 30 0 0 3 0 10 0 100 9.25925922 100 100 0 0 0 0 0 0 0 0 0 0 40 0 0 0 100 100 0 0 0 92.8571396 92.8571396 0 0 0 0 0 26300 8000 800 0 15000 2500 226 61 122 183 2 1.09289622 66.6666641 10 5.46448088 181 176 97.2677612 97.2375717 0 43 1 17.1963615 17.1963615 1781 Yes No No Yes Yes No No No Yes Yes No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No No No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 50% to 74% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 21 to 30 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 2-3 times a week (130) 1 to 10 None 1 to 10 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 20 to 30 1 to 10 1 to 10 1 to 10 50% to 74% Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 5+ 5+ Yes No No Phone Urban England South West South Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No CAWI Adults 34 500 0 500 0 0 0 5000 5000 0 0 0 0 6045 2500 1545 2000 0 0 0 0 0 0 0 2000 2000 0 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 2 0 2 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12000 9000 0 0 2500 500 6 0 0 0 0 0 50 0 0 0 0 0 0 2 6 5 18.6235714 18.6235714 1784 Yes No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No Yes No No No No No No No Yes No No No No No No No 51 to 100 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 3 3 Most days (365) Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 100% 1 to 10 25% to 49% 1 to 10 50% to 74% 75% to 99% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 11 to 20 1 to 10 1 to 10 Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 11 to 20 1 to 10 1 to 10 Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 25% to 49% 1 to 10 25% to 49% 1 to 10 25% to 49% 50% to 74% 1 to 10 51 to 100 31 to 40 11 to 20 1 to 10 11 to 20 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 100% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 50% to 74% 50% to 74% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 20 to 30 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 11 to 20 1 to 10 1 to 10 Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 100+ 51 to 100 51 to 100 11 to 20 31 to 40 11 to 20 21 to 30 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes Yes Yes Yes Yes 5+ 5+ Yes Yes No Phone Urban England North West North White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 29 7000 1000 1000 1000 1000 3000 2000 1000 1000 2000 1000 1000 8000 2000 1000 2000 1000 1000 1000 3000 1000 1000 1000 2000 1000 1000 5 3 6 6 3 3 2 1 2 3 1 1 2 1 2 2 1 1 4 2 4 5 2 2 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 0 0 0 0 0 1 1 2 1 1 1 25 100 25 66.6666641 75 50 50 50 100 100 25 33.3333321 25 33.3333321 50 20 100 20 20 50 60 50 50 50 100 100 50 50 50 100 100 21000 7000 6000 2000 4000 2000 26 10 9 19 6 31.5789471 61.5384598 6 31.5789471 13 8 73.6842117 61.5384598 1 7 5 11.6929893 11.6929893 1789 Yes No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Don't know Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 3 3 Yes Yes No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11.4110355 11.4110355 1797 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No Yes No No No No No No No Yes Yes No Yes No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything 31 to 40 11 to 20 1 to 10 21 to 30 11 to 20 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly disagree (-4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Yes No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England East Midlands Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 1000 0 0 0 1000 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 1000 1000 0 10 0 0 0 10 11 10 0 0 0 0 1 0 0 0 0 10 0 10 0 0 0 10 1 10 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 3000 1000 1000 0 1000 0 31 11 10 21 11 52.3809509 0 0 0 10 10 100 100 0 10 1 16.2971992 16.2971992 1808 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No No No No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No Yes No No No No Yes No No No No Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No Yes No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything About once a month (12) Every 2-3 weeks (30) 21 to 30 1 to 10 1 to 10 11 to 20 11 to 20 100% 25% to 49% None None 100% 11 to 20 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 1 to 10 Have not spent anything 11 to 20 Have not spent anything 31 to 40 1 to 10 1 to 10 11 to 20 11 to 20 100% 1 to 10 25% to 49% None None None 100% None 21 to 30 Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Neither agree nor disagree (0) Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No No No Yes No No No Yes No Yes No Yes No No Yes No No No No No No No No No No Not at all confident (1) No Yes No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 32 1500 0 0 1000 500 0 0 0 0 0 0 0 2500 2000 0 500 0 0 0 0 0 0 0 2000 2000 0 27 0 0 1 0 6 6 0 0 0 0 0 6 0 0 0 0 0 12 0 0 0 0 0 12 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 1 0 6 100 37.0370369 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6000 3500 500 0 2000 0 34 6 6 12 12 100 29.4117641 0 0 0 0 100 0 0 22 1 17.3453598 17.3453598 1810 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No Yes Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 Have not spent anything 11 to 20 1 to 10 Have not spent anything 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything 21 to 30 11 to 20 11 to 20 1 to 10 1% to 24% None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes No No Yes No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 3100 0 2000 500 0 600 0 600 0 0 600 1200 1200 0 0 0 0 3 15 6 0 0 0 0 0 0 0 0 0 2 15 0 0 0 0 2 15 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 1 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 3500 1700 600 600 600 0 24 0 17 17 2 11.7647057 0 0 0 15 15 100 100 0 7 2 16.9271107 16.9271107 1813 Yes Yes Yes No Yes Yes No No No No No No No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) No Yes No No No No No No No No No No Yes No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes No 5+ 5+ Yes Yes No Phone Urban England London South Bangladeshi Minority Ethnic Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 17.9305305 17.9305305 1816 Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No No No No No No Yes No No No No No Yes No No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No Yes No No No Yes No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 201 to 500 201 to 500 201 to 500 None None None None None None None 1001+ 51 to 100 51 to 100 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None None None 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 501 to 1000 201 to 500 51 to 100 501 to 1000 None None None None None None None None None None 101 to 200 None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No Yes Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No No Yes Phone Urban Wales Wales Midlands Any other white White Yes No Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 0 0 5 100 0 400 0 0 5 0 0 0 0 0 0 100 0 400 0 0 5 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10000 100 100 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 505 405 100 505 0 0 0 0 0 505 0 0 0 105 0 2 16.2971992 16.2971992 1829 Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Once a day (365) No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No Yes Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No Yes No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 600 0 0 0 600 0 2 0 2 2 0 0 0 0 0 2 2 100 100 0 0 1 16.5564308 16.5564308 1831 Yes No Yes No No Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No Yes Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know No Yes No No No No No Yes Yes No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No Yes No 2 2 No Yes No Phone Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 11.5925446 11.5925446 1840 Yes Yes Yes No No Yes No No Yes Yes Yes Yes No Yes Yes No No No Yes No No No Yes No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes Yes No No No No No No No No Yes No Yes Yes No No No No No No No Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No No No No No Yes No Yes Yes No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None 31 to 40 11 to 20 11 to 20 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 51 to 100 1 to 10 41 to 50 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None None None None None None None 75% to 99% 1 to 10 11 to 20 Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No No No Yes Yes Yes 4 4 No Yes No Phone Urban England South East South White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 3698 1200 699 1799 0 0 0 5199 699 4500 0 3500 3500 0 2 2 1 5 2 6 1 1 0 0 0 0 1 1 1 0 0 0 2 2 1 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 5 2 6 100 0 0 0 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10999 9799 0 0 1200 0 18 2 3 5 4 80 0 0 0 1 0 80 0 2 13 4 14.5680799 14.5680799 1842 Yes Yes No No No Yes Yes No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes Yes No Yes Yes No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No Yes Yes Yes No Yes No No No Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 41 to 50 Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% 1 to 10 41 to 50 Have not spent anything Have not spent anything Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 Have not spent anything 41 to 50 Have not spent anything 2-3 times a week (130) Every 2-3 weeks (30) 101 to 200 51 to 100 1 to 10 101 to 200 11 to 20 1% to 24% 25% to 49% 41 to 50 25% to 49% 51 to 100 75% to 99% 75% to 99% Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 100+ 41 to 50 Have not spent anything Have not spent anything Have not spent anything 101 to 200 101 to 200 11 to 20 101 to 200 21 to 30 1% to 24% 1 to 10 1% to 24% 41 to 50 25% to 49% 101 to 200 75% to 99% 101 to 200 75% to 99% None 1 to 10 Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes No No No No Yes Yes No No No No No No Yes Yes No Yes Yes Yes Yes No Yes No No No No Yes Yes No Yes No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No Yes Yes Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban Scotland Scotland North White Irish White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 0 0 0 0 0 0 0 0 0 10000 5000 5000 5000 0 0 5000 0 0 0 5000 0 5000 0 0 0 0 11 0 8 9 104 15 10 0 6 4 100 10 1 0 1 1 4 5 11 0 7 5 104 15 0 0 4 0 20 0 0 0 0 0 5 0 0 0 0 0 50 0 1 11 0 3 5 80 15 0 0 0 0 0 0 0 0 0 0 1 4 0 0 0 0 0 100 100 0 0 0 0 0 57.1428566 0 0 100 100 0 0 0 20 100 100 19.2307701 25 48.0769234 95.2380981 96.1538467 0 0 0 100 100 20000 15000 5000 0 0 0 147 130 12 142 24 16.9014091 17.2413788 50 35.2112694 118 114 97.1830978 96.6101685 0 5 1 17.1963615 17.1963615 1843 Yes No No No No No No No No No No No No Yes No No No No No No Yes No Yes No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) No Yes No No No Yes Yes No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 4 4 No Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 15 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 17 4 12.5546675 12.5546675 1844 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 1 to 10 1 to 10 Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 31 to 40 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 21 to 30 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Yes No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 5700 700 0 5000 0 0 0 0 0 0 0 3000 3000 0 10 0 0 20 0 7 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 7 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8700 8000 0 0 700 0 37 10 0 10 0 0 0 0 0 10 10 100 100 0 27 1 17.3453598 17.3453598 1848 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes Yes No No Yes Yes No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes No No Yes Yes No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No Yes No Yes No No No No No Yes No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) About once a month (12) 31 to 40 1 to 10 11 to 20 21 to 30 1 to 10 25% to 49% None 11 to 20 50% to 74% 1 to 10 50% to 74% 50% to 74% 501 to 1000 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 41 to 50 1 to 10 31 to 40 31 to 40 1 to 10 1% to 24% None None 11 to 20 50% to 74% 11 to 20 50% to 74% 11 to 20 50% to 74% 1 to 10 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England West Midlands Midlands White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 1500 0 0 1000 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38 0 0 2 10 0 8 0 0 0 0 0 20 0 0 2 10 0 28 0 0 2 10 0 8 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 10 0 0 0 10 0 1000 10 10 0 0 0 0 0 10 0 0 0 0 0 28.5714283 0 71.4285736 50 64.2857132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1500 1000 500 0 0 0 50 8 32 40 8 20 0 20 50 32 20 70 62.5 10 10 2 13.2410421 13.2410421 1850 Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Once a day (365) No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No No No Yes Yes No 3 3 Yes No No Phone Urban England West Midlands Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 25 0 0 0 0 0 0 111 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 111 111 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 16.2971992 16.2971992 1852 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Yes Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 650 650 0 0 0 0 0 0 0 0 0 1200 1200 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1850 1200 0 0 650 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 16.9271107 16.9271107 1856 Yes No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything None None None Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 4 4 Yes No No Phone Urban England East Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 0 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 11.4110355 11.4110355 1857 Yes Yes Yes Yes No Yes No No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 31 to 40 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 2-3 times a week (130) 21 to 30 11 to 20 11 to 20 None None None None None None None 11 to 20 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 41 to 50 Have not spent anything 51 to 100 51 to 100 51 to 100 None None None None None None 51 to 100 100% 51 to 100 100% None 11 to 20 Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Neither agree nor disagree (0) Strongly disagree (-4) Don't know Strongly disagree (-4) Yes No No Yes Yes No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes No 4 4 Yes No No Phone Rural England East Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 5000 5000 0 0 0 0 5500 4000 0 1000 0 0 500 0 0 0 0 500 500 0 0 5 0 25 50 3 0 0 0 20 50 0 0 0 0 0 0 0 0 0 0 20 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 50 0 0 0 0 0 0 0 0 0 0 5 0 5 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 11000 6500 0 0 4500 0 83 70 0 70 0 0 0 0 0 70 70 100 100 0 13 4 16.2971992 16.2971992 1859 Yes Yes Yes Yes Yes Yes No No Yes No No No No Yes Yes No No No No No Yes No No No No No No Yes No Yes Yes Yes Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No Yes No No No No No No No No No No Yes Yes No Yes No No No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No No Yes No Yes Yes No No No No No No Yes Yes No No No No No No 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 41 to 50 11 to 20 1 to 10 Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 31 to 40 11 to 20 11 to 20 11 to 20 100% 25% to 49% 1 to 10 25% to 49% 1 to 10 1% to 24% 100% 11 to 20 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 1 to 10 1 to 10 Have not spent anything About once a week (52) About once a week (52) 51 to 100 11 to 20 1 to 10 21 to 30 1 to 10 25% to 49% None 1 to 10 1% to 24% 11 to 20 100% 100% 31 to 40 11 to 20 11 to 20 Have not spent anything About once a month (12) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very Unlikely (1) 51 to 100 20 to 30 Have not spent anything 1 to 10 41 to 50 11 to 20 101 to 200 41 to 50 1 to 10 51 to 100 31 to 40 50% to 74% 1 to 10 1% to 24% 11 to 20 25% to 49% 11 to 20 100% 11 to 20 100% None 51 to 100 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Yes Yes Yes No No No No No No No No No No Yes Yes No Yes No No No No Yes No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes Yes 5+ 5+ Yes Yes No Phone Urban Wales Wales Midlands Any other white White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 1500 1500 0 0 0 0 0 0 0 0 0 0 7499 4200 1500 799 0 1000 0 1500 1000 500 0 1500 1500 0 3 0 0 40 63 9 0 0 0 20 20 3 3 0 0 0 3 3 3 0 0 20 23 6 0 0 0 20 10 3 0 0 0 10 0 0 3 0 0 6 5 0 3 3 0 0 0 13 3 0 0 0 0 0 0 0 0 0 0 0 20 40 3 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 100 25 30 15 0 100 43.47826 0 21.73913 100 100 50 0 0 100 100 9499 2799 0 1000 4200 1500 115 43 9 52 33 63.4615402 10.416667 14 26.9230766 19 19 100 100 0 63 5 16.9271107 16.9271107 1865 Yes No Yes No No No No No No Yes No Yes No Yes No No No No Yes No Yes No Yes No No No No No No No No Yes Yes No Yes Yes No No No No No No Several times a day (730) No No Yes No No Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 20 to 30 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 51 to 100 41 to 50 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 21 to 30 1 to 10 11 to 20 21 to 30 None None None None 11 to 20 75% to 99% 75% to 99% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 11 to 20 Have not spent anything 51 to 100 Have not spent anything 41 to 50 1 to 10 21 to 30 31 to 40 1 to 10 1% to 24% None None None None 21 to 30 75% to 99% 21 to 30 75% to 99% None 1 to 10 Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Don't know Strongly disagree (-4) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Yes No No Yes No No No No No No No No No Yes No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes Yes Yes No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Urban England North West North White British White No Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 33 0 0 0 0 0 0 4500 3000 1500 0 0 0 12000 6000 4500 1500 0 0 0 0 0 0 0 1500 1500 0 10 3 0 2 24 5 0 1 0 0 6 0 10 0 0 0 18 0 10 1 0 0 24 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 20 0 0 0 0 0 0 0 0 0 0 2 0 2 0 5 0 0 0 100 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83.3333359 83.3333359 0 0 0 0 0 13500 6000 1500 0 6000 0 44 7 28 35 1 2.85714293 0 0 0 34 30 88.5714264 88.2352905 0 9 1 13.5682125 13.5682125 1870 Yes Yes Yes No No Yes No No Yes Yes Yes Yes No Yes Yes No No No No Yes No No No No No No No Yes No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes Yes Yes No No No No No Yes Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rural England North West North African Minority Ethnic Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 2 0 0 0 2 100 2 2 100 100 0 0 2 17.3453598 17.3453598 1872 Yes Yes Yes No No Yes No No No No No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No 51 to 100 51 to 100 31 to 40 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 100+ 31 to 40 Have not spent anything Have not spent anything 11 to 20 51 to 100 1 to 10 1 to 10 50% to 74% Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Very confident (4) No No No No No No No No No No No Yes No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England West Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 32 6500 4000 2000 500 0 0 0 0 0 0 0 0 2700 1500 0 1200 0 0 0 1200 0 1200 0 199 199 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 10599 3099 0 0 1500 6000 3 0 0 0 0 0 66.6666641 0 0 0 0 0 0 0 3 4 13.2410421 13.2410421 1883 Yes No Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None 1 to 10 100% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 5+ 5+ No Yes No Phone Urban England North West North African Minority Ethnic Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 32 0 0 0 0 0 0 2500 2500 0 0 0 0 1500 0 500 1000 0 0 0 1500 500 1000 0 0 0 0 0 1 0 3 4 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 4500 4500 0 0 0 0 8 0 3 3 0 0 0 3 100 3 3 100 100 0 5 5 11.6929893 11.6929893 1884 Yes Yes No No No Yes No No No Yes No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No Yes Yes No No Yes Yes No No No No No No Yes No No No No No No No No No Yes No No No Yes Yes No No No No No Yes No No No Yes Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 100+ 51 to 100 51 to 100 11 to 20 41 to 50 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 51 to 100 31 to 40 1 to 10 41 to 50 41 to 50 100% 25% to 49% 11 to 20 25% to 49% 100% 11 to 20 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 51 to 100 21 to 30 21 to 30 Have not spent anything 11 to 20 11 to 20 Have not spent anything Have not spent anything Every 2-3 weeks (30) Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 1 to 10 1% to 24% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 Have not spent anything Have not spent anything 1 to 10 Every 2-3 weeks (30) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 20 to 30 Have not spent anything 31 to 40 51 to 100 51 to 100 41 to 50 11 to 20 51 to 100 51 to 100 100% 11 to 20 1% to 24% 11 to 20 1% to 24% None 100% None 21 to 30 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No Yes No No No No No No No No Yes Yes No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes No Yes Yes Yes Yes No No No Yes No No No No No Very confident (4) Yes No Yes No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No No Yes No Yes No 3 3 Yes No No Phone Urban Wales Wales Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 26 14900 7400 2000 5000 500 0 7000 7000 0 5600 5600 0 6500 3000 0 2000 1500 0 0 200 0 0 200 1000 1000 0 58 10 1 12 2 3 40 0 0 5 1 0 5 0 0 5 1 0 45 0 0 10 2 0 45 0 0 10 2 0 15 0 0 0 2 0 13 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 10 1 2 0 3 100 25.8620682 28.8888893 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 20 0 100 100 100 0 0 100 0 0 0 0 0 35400 20600 2200 0 3200 9400 86 46 11 57 57 100 19.7674427 13 22.8070183 0 0 100 0 0 29 3 16.9271107 16.9271107 1894 Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything None None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Yes Yes No Yes No Yes No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No Yes No 2 2 Yes No No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 0 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.5546675 12.5546675 1895 Yes No Yes No No Yes No No Yes No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes Yes Yes No No No No 51 to 100 51 to 100 31 to 40 3 3 Have not spent anything Have not spent anything Have not spent anything Less often (6) 31 to 40 1 to 10 1 to 10 1 to 10 100% None None None 100% 31 to 40 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Most days (365) 21 to 30 21 to 30 21 to 30 1 to 10 1% to 24% None None None 21 to 30 75% to 99% 75% to 99% 31 to 40 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 51 to 100 Have not spent anything 51 to 100 Have not spent anything 2-3 times a week (130) 31 to 40 31 to 40 31 to 40 None None None None 31 to 40 100% 100% 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything Have not spent anything Have not spent anything 51 to 100 101 to 200 21 to 30 31 to 40 51 to 100 1 to 10 1% to 24% None None None None 51 to 100 75% to 99% 51 to 100 75% to 99% None 41 to 50 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 4 4 Yes No No Phone Urban England North West North White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 28 9500 4000 2500 3000 0 0 4000 4000 0 0 0 0 4000 0 0 4000 0 0 0 8000 0 8000 0 4000 4000 0 37 2 25 3 40 5 1 0 25 0 0 0 0 0 0 0 40 0 1 0 25 0 40 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 0 40 0 0 0 0 0 0 0 0 0 36 2 0 3 0 5 100 0 0 0 100 0 0 0 0 0 8 0 0 95.6521759 96 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 29500 23000 0 0 0 6500 112 26 40 66 3 4.5454545 0 0 0 63 62 98.484848 98.4126968 0 46 4 13.5682125 13.5682125 1896 Yes Yes No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Strongly disagree (-4) Slightly disagree (-2) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban Wales Wales Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 30 100 0 0 0 100 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 0 0 0 0 1500 1500 0 2 0 0 1 0 3 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2600 2500 100 0 0 0 6 2 0 2 2 100 0 0 0 0 0 100 0 0 4 3 16.9271107 16.9271107 1902 Yes Yes Yes Yes Yes No Yes No Yes Yes Yes Yes No Yes Yes No No Yes Yes No Yes No No No No No No Yes No Yes Yes Yes Yes Yes No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No No No No No No Yes Yes Yes Yes No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No Yes Yes Yes No Yes Yes No No Yes Yes Yes No Yes Yes No No Yes Yes Yes Yes Yes No No No 100+ 51 to 100 3 41 to 50 1 to 10 1 to 10 100+ 100+ Most days (365) Most days (365) Most days (365) 51 to 100 31 to 40 31 to 40 51 to 100 1 to 10 1% to 24% 1% to 24% 1 to 10 1% to 24% 21 to 30 25% to 49% 25% to 49% 41 to 50 21 to 30 21 to 30 21 to 30 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 31 to 40 11 to 20 20 to 30 Most days (365) 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 1 to 10 1% to 24% 50% to 74% 1 to 10 25% to 49% 1 to 10 25% to 49% 50% to 74% 1 to 10 1 to 10 21 to 30 21 to 30 Have not spent anything 21 to 30 1% to 24% 21 to 30 100+ 100+ 11 to 20 100+ 11 to 20 Have not spent anything Have not spent anything 11 to 20 31 to 40 50% to 74% 31 to 40 100+ 100+ 51 to 100 Have not spent anything 1 to 10 25% to 49% 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 50% to 74% 1 to 10 100+ 100+ 20 to 30 41 to 50 20 to 30 51 to 100 101 to 200 51 to 100 31 to 40 51 to 100 1 to 10 1% to 24% 41 to 50 25% to 49% 1 to 10 1% to 24% 21 to 30 25% to 49% 21 to 30 25% to 49% 21 to 30 51 to 100 Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Yes Yes Yes Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Yes No No Yes Yes No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 3 3 Yes Yes No Phone Urban England London South Bangladeshi Minority Ethnic Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes No Yes No Yes No Yes Yes No Yes No Yes Yes Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 21113 2300 4308 498 507 13500 3602 1301 2301 2321 2321 0 15606 1202 12101 1101 0 0 1202 51209 45609 5600 0 5604 5604 0 89 30 23 34 4 6 34 23 0 0 0 0 34 0 0 0 0 0 68 23 0 0 0 0 2 5 0 0 0 0 3 6 5 22 1 4 2 7 0 0 0 0 0 23 7 0 0 0 0 44 23 23 3 0 0 0 0 21 7 23 34 4 6 2.94117641 13.043478 2.94117641 34.848484 36.7647057 21.73913 50 30.434782 38.8888893 52.173912 0 21.73913 0 0 0 0 64.7058792 0 0 0 0 0 25 0 0 0 0 66.6666641 0 0 0 32745 16425 2808 4500 2404 6608 186 57 34 91 7 7.69230747 40.1960793 9 9.89011002 84 30 40.6593399 35.7142868 26 95 3 17.9305305 17.9305305 1905 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 16.9271107 16.9271107 1908 Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything None None None Slightly disagree (-2) Strongly disagree (-4) Don't know Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Don't know Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 0 0 0 2500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 13.5682125 13.5682125 1910 Yes Yes Yes Yes Yes Yes No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes No No No No No No No No Yes Yes Yes No No No Yes No Yes No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No Yes No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 1 to 10 Have not spent anything Have not spent anything 21 to 30 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 1 to 10 Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) No No No No No No No No No No No No No No No Yes Yes No No No No No Yes Yes Yes Yes Yes No No Yes Yes No No No No Yes No Yes Yes No No Yes No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 1700 0 0 1500 200 0 0 0 0 0 0 0 3395 0 0 3000 0 0 395 2000 0 2000 0 795 795 0 4 4 0 5 0 3 0 0 0 0 0 0 3 4 0 0 0 0 3 4 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 0 3 100 0 0 0 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7890 7295 200 0 395 0 16 0 7 7 3 42.8571434 0 0 0 4 4 100 100 0 9 2 17.3453598 17.3453598 1915 Yes Yes Yes No No Yes Yes No No Yes No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No No Several times a day (730) Yes Yes No No No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No Yes No No Yes Yes No 100+ 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 3 3 About once a week (52) Most days (365) 201 to 500 11 to 20 101 to 200 201 to 500 11 to 20 1% to 24% 100% None None 101 to 200 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 41 to 50 1 to 10 21 to 30 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 None None 1% to 24% None None 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 1 to 10 20 to 30 1 to 10 About once a month (12) 2-3 times a week (130) 101 to 200 1 to 10 51 to 100 101 to 200 11 to 20 1% to 24% None None None 51 to 100 100% 100% 11 to 20 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 20 to 30 1 to 10 51 to 100 51 to 100 201 to 500 21 to 30 201 to 500 201 to 500 31 to 40 1% to 24% 21 to 30 25% to 49% None None 201 to 500 100% 201 to 500 100% None 21 to 30 Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes No No No Yes No Yes No Yes No No No Yes Yes No Yes No Yes Yes No No Yes Yes No No Yes No Yes Yes Yes Yes No No Yes Yes No No No Yes No No No No Yes No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 4 4 No Yes No Phone England London South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 13000 8000 0 0 2000 3000 0 0 0 0 0 0 8300 5000 600 2700 0 0 0 3489 600 2700 189 6000 6000 0 220 0 0 11 114 8 20 0 0 0 1 0 200 0 0 4 100 0 220 0 0 4 101 0 20 0 0 0 14 0 20 0 0 1 0 0 0 0 0 0 0 0 2 200 0 0 4 87 0 0 0 0 0 0 0 0 0 0 0 0 7 13 8 9.090909 100 0 100 100 0 0 0 0 0 0 0 0 0 0 0 14.2857141 0 50 100 100 13.8613863 0 0 100 100 0 0 0 0 0 27778 11400 2189 1000 5189 8000 353 21 304 325 34 10.4615383 33.8709679 0 0 291 291 100 100 0 28 4 12.5546675 12.5546675 1920 Yes No No No No No No No No Yes No No No No Yes No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) No No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No Yes No No Yes No No No Yes No No No Yes No No No Yes No No No 51 to 100 51 to 100 51 to 100 3 11 to 20 Have not spent anything Have not spent anything 51 to 100 1% to 24% 51 to 100 41 to 50 20 to 30 20 to 30 Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 25% to 49% 1 to 10 100% None None 75% to 99% 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 25% to 49% 1 to 10 100+ 100+ 21 to 30 51 to 100 31 to 40 Have not spent anything Have not spent anything 21 to 30 1 to 10 50% to 74% 1 to 10 51 to 100 51 to 100 11 to 20 Have not spent anything Most days (365) 1 to 10 100% 1 to 10 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 100% 1 to 10 100+ 100+ 20 to 30 Have not spent anything 51 to 100 51 to 100 51 to 100 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 11 to 20 1% to 24% 1 to 10 100% None None None 75% to 99% 1 to 10 51 to 100 Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 1 1 Yes No No Phone England London South Indian Minority Ethnic No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 25 9587 5676 2465 1446 0 0 4799 2465 2334 6700 6700 0 14326 2587 5676 3576 0 0 2487 6910 5676 1234 0 2405 2405 0 64 8 9 7 2 1 0 1 0 0 0 0 0 3 0 0 0 0 0 4 0 0 0 0 0 3 0 0 0 0 4 2 4 5 2 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 64 4 9 7 2 1 0 6.25 0 0 0 75 28.5714283 100 0 75 0 44.4444427 0 0 0 0 71.4285736 0 0 0 0 0 100 0 0 0 0 100 0 0 0 33375 17826 2334 0 5074 8141 91 1 3 4 3 75 20 4 100 1 0 75 0 1 87 1 14.5680799 14.5680799 1925 No Yes No No No No No No No Yes No No No No No No No Yes No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Once a day (365) No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No Yes No No No No No 3 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 1 to 10 1 to 10 1 to 10 Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 20 to 30 1 to 10 1 to 10 1 to 10 1 to 10 31 to 40 1 to 10 1 to 10 1 to 10 1 to 10 100% 21 to 30 75% to 99% 1 to 10 100% None 100% 1 to 10 21 to 30 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 4 4 Yes No No Phone Urban England West Midlands Midlands White British White No Yes Yes Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes CAWI Adults 27 2820 404 404 404 404 1212 808 404 404 404 404 0 1616 404 404 404 0 0 404 808 404 404 0 404 404 0 8 8 4 4 4 4 0 4 0 0 0 0 4 0 0 0 0 0 4 4 0 0 0 0 4 4 0 0 0 0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 4 4 4 4 4 4 100 50 100 0 100 100 50 100 0 100 0 100 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 5252 2424 808 404 808 808 32 4 4 8 8 100 75 8 100 0 0 100 0 4 24 4 13.2410421 13.2410421 1928 No Yes No No No No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No Yes No Yes No No No No No No No No No No Once a day (365) No No No No No Yes No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No Yes No No Yes No No No No Yes No No Yes No No No 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 100% 1 to 10 11 to 20 1 to 10 1 to 10 1 to 10 Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 20 to 30 1 to 10 Have not spent anything 11 to 20 1 to 10 31 to 40 1 to 10 1 to 10 1 to 10 1 to 10 100% 21 to 30 75% to 99% 1 to 10 100% None 100% 1 to 10 21 to 30 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 4 4 Yes No No Phone Urban England North West North White British White No Yes No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes CAWI Adults 28 1212 404 404 404 0 0 808 404 404 404 404 0 1616 404 404 404 0 0 404 1212 404 404 404 404 404 0 4 8 4 4 8 4 0 0 0 0 4 0 0 4 0 0 0 0 0 4 0 0 4 0 0 4 0 0 4 0 4 4 4 4 4 4 0 4 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 4 4 4 4 4 4 0 100 0 0 0 100 50 100 0 100 0 100 0 0 0 0 100 0 0 0 0 100 50 100 0 100 0 100 0 0 0 5252 2424 808 0 1212 808 32 4 4 8 8 100 75 8 100 0 0 100 0 4 24 4 13.5682125 13.5682125 1930 No No Yes No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No Yes No No Yes No No No No No No No No No Once a day (365) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No Yes No No Yes No No No No No No No Yes Yes No No No 3 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 Most days (365) Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 41 to 50 20 to 30 1 to 10 1 to 10 1 to 10 1 to 10 31 to 40 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 21 to 30 75% to 99% 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% 1 to 10 21 to 30 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes Yes No Phone Urban England London South White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 26 2820 404 404 404 404 1212 404 404 0 404 404 0 1212 404 404 404 0 0 0 808 404 404 0 404 404 0 12 4 4 4 4 4 4 0 0 0 0 0 4 0 0 0 0 0 8 0 0 0 0 0 4 0 0 0 0 0 4 4 4 4 4 4 4 0 0 0 0 0 0 4 0 0 0 0 0 4 4 4 0 0 0 0 0 4 4 4 4 4 4 50 50 50 100 100 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 4444 2424 404 404 404 808 32 4 4 8 4 50 85.7142868 4 50 4 4 100 100 4 24 3 14.5680799 14.5680799 1932 No Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No Yes No Yes No Yes No No No No No No No No No No Once a day (365) No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No Yes No No No Yes No No Yes No No No No Yes No No Yes No No No 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 100% 1 to 10 11 to 20 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 41 to 50 20 to 30 1 to 10 Have not spent anything 11 to 20 1 to 10 31 to 40 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 21 to 30 75% to 99% 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% 1 to 10 21 to 30 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No Yes No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No No Yes No Yes No 3 3 Yes No No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 1212 404 404 404 0 0 404 404 0 404 404 0 1616 404 404 404 0 0 404 1212 404 404 404 404 404 0 4 4 4 4 12 4 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 8 0 0 0 0 0 4 0 4 4 4 4 4 4 0 0 0 0 4 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 4 4 4 4 4 4 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 50 50 50 100 100 0 100 0 0 0 4848 2424 404 0 1212 808 32 4 4 8 4 50 85.7142868 4 50 4 4 100 100 4 24 3 14.5680799 14.5680799 1933 Yes Yes Yes No No Yes Yes No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes Yes No Yes Yes No No No No No No No Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes No Yes Yes No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No Yes No No No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 41 to 50 1 to 10 1 to 10 None None None None None None None None 41 to 50 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 41 to 50 31 to 40 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 50% to 74% None None None 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 1 to 10 Have not spent anything Have not spent anything 31 to 40 Have not spent anything 51 to 100 1 to 10 1 to 10 11 to 20 None None None None None None 1 to 10 50% to 74% 1 to 10 50% to 74% None 41 to 50 Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No Yes Yes Yes 5+ 5+ Yes No No Phone Urban England North West North White British White Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 31 500 0 0 500 0 0 0 0 0 0 0 0 5200 4000 1000 200 0 0 0 1000 1000 0 0 0 0 0 47 0 4 5 5 0 2 0 4 2 0 0 0 0 0 0 4 0 2 0 4 2 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 0 4 0 0 0 0 0 0 0 0 0 45 0 0 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 50 0 0 0 0 0 100 100 0 0 0 0 0 4700 700 0 0 4000 0 61 8 4 12 0 0 0 0 0 12 8 66.6666641 66.6666641 0 49 5 16.6998844 16.6998844 1940 Yes No Yes No No Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 101 to 200 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 51 to 100 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 100+ 100+ Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 Have not spent anything Most days (365) 31 to 40 21 to 30 21 to 30 21 to 30 100% None None None 1 to 10 1% to 24% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 1 to 10 1 to 10 1 to 10 Have not spent anything 101 to 200 31 to 40 31 to 40 31 to 40 100% None None 1 to 10 1% to 24% None 100% None 101 to 200 Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England East of England Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 31 3000 0 0 3000 0 0 15000 15000 0 0 0 0 1600 0 0 1000 0 600 0 600 0 0 600 0 0 0 105 5 0 40 5 0 0 0 0 0 0 0 5 0 0 30 5 0 5 0 0 30 5 0 5 0 0 30 5 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 5 0 10 0 0 100 0 100 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 16.666666 0 100 100 0 0 0 100 0 0 0 0 0 20800 19000 600 600 600 0 155 0 40 40 40 100 0 5 12.5 0 0 100 0 0 115 1 13.2410421 13.2410421 1946 Yes Yes Yes No No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 16.2971992 16.2971992 1947 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 1 to 10 1 to 10 20 to 30 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Neither agree nor disagree (0) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England West Midlands Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 28 1100 0 0 0 500 600 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 3000 3000 0 6 0 0 0 0 7 6 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6700 3000 500 200 3000 0 13 6 0 6 6 100 0 0 0 0 0 100 0 0 7 3 16.2971992 16.2971992 1959 Yes Yes Yes No No Yes No No No No No No No Yes Yes Yes No No Yes No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes Yes Yes Yes No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No Yes Yes No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No Yes Yes No Yes No Yes Yes No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 About once a month (12) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% 100% None None 11 to 20 100% 100% 41 to 50 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything About once a week (52) About once a week (52) 21 to 30 11 to 20 11 to 20 21 to 30 21 to 30 100% None None None None None 100% Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) 20 to 30 11 to 20 Have not spent anything 11 to 20 2-3 times a week (130) 21 to 30 11 to 20 11 to 20 None None None None None 11 to 20 100% 100% 1 to 10 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 31 to 40 11 to 20 31 to 40 Have not spent anything 51 to 100 21 to 30 31 to 40 51 to 100 31 to 40 50% to 74% 1 to 10 1% to 24% None None 31 to 40 100% 31 to 40 100% None 1 to 10 Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Yes Yes Yes Yes Yes Yes No Yes Yes No No No No Yes Yes No Yes Yes Yes Yes No Yes No No No No No No Yes Yes No Yes Yes No No No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No Yes No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South East South White British White Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 32 0 0 0 0 0 0 0 0 0 2000 0 2000 4400 2000 1200 0 0 1200 0 2400 1200 0 1200 4000 4000 0 0 0 12 30 21 4 0 0 10 15 0 0 0 0 2 15 20 0 0 0 12 30 20 0 0 0 1 30 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 11 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 0 0 0 0 0 0 0 0 0 0 8.33333302 100 0 100 100 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 11600 4000 3200 1200 3200 0 67 25 37 62 31 50 2.77777767 0 0 31 31 100 100 0 5 2 17.9305305 17.9305305 1966 Yes No No No No Yes No No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 51 to 100 51 to 100 51 to 100 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 21 to 30 None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 Have not spent anything 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 Have not spent anything Have not spent anything Have not spent anything 51 to 100 31 to 40 None None Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) Yes No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 4 4 Yes No No Phone England West Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 33 9000 8000 0 1000 0 0 2000 2000 0 0 0 0 3000 0 1000 2000 0 0 0 0 0 0 0 0 0 0 30 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13000 5000 0 0 0 8000 35 0 0 0 0 0 0 0 0 0 0 0 0 0 35 4 16.2971992 16.2971992 1967 Yes No Yes No No Yes Yes No No No No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No Yes No No No No No Yes No No No No Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No Yes No No No No Yes No Yes No No No No No Yes No Yes No No Yes Yes No Yes No Yes No No No Yes No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 3 1 to 10 11 to 20 11 to 20 About once a month (12) About once a week (52) 101 to 200 1 to 10 41 to 50 51 to 100 None None 1% to 24% None None 51 to 100 100% 100% 51 to 100 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 1 to 10 1 to 10 1 to 10 Have not spent anything 101 to 200 1 to 10 41 to 50 51 to 100 None None 11 to 20 1% to 24% None None 51 to 100 100% 51 to 100 100% None 101 to 200 Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) No No No No No No No No No No Yes No No Yes No No No No No No Yes No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Rural England Yorkshire and The Humber North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 25 5000 0 0 3000 500 1500 0 0 0 0 0 0 2000 500 0 1500 0 0 0 1500 0 1500 0 0 0 0 160 0 0 2 0 0 10 0 0 0 0 0 50 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 2 0 0 0 15 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7500 6000 500 500 500 0 162 10 50 60 0 0 14.7058821 0 0 60 60 100 100 0 102 2 13.5682125 13.5682125 1972 Yes Yes Yes No No Yes Yes No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Don't know Don't know 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% None 1 to 10 25% to 49% 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 Have not spent anything 31 to 40 Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 11 to 20 Have not spent anything Have not spent anything Have not spent anything 31 to 40 11 to 20 11 to 20 31 to 40 11 to 20 25% to 49% None None 1 to 10 1% to 24% 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 2000 0 0 0 2000 0 0 0 0 0 0 0 4000 0 0 4000 0 0 0 4000 0 4000 0 0 0 0 15 0 0 3 15 0 10 0 0 1 0 0 5 0 0 0 15 0 15 0 0 1 15 0 10 0 0 1 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 5 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 66.6666641 0 33.3333321 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 10000 8000 2000 0 0 0 33 11 20 31 11 35.4838715 0 5 16.1290321 20 20 100 100 0 2 2 13.2410421 13.2410421 1979 Yes Yes Yes No No No Yes No No Yes No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 21 to 30 None 21 to 30 51 to 100 51 to 100 Have not spent anything 41 to 50 1% to 24% 41 to 50 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 31 to 40 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) 51 to 100 41 to 50 31 to 40 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything 31 to 40 Have not spent anything 51 to 100 1 to 10 1 to 10 1 to 10 100% 1 to 10 1% to 24% None None None 100% None 51 to 100 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England North West North Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 33 1500 0 0 1500 0 0 6000 6000 0 0 0 0 8500 4000 4500 0 0 0 0 8500 4500 4000 0 0 0 0 30 45 0 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 45 0 0 2 0 0 0 0 0 0 0 2.22222233 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 100 0 0 0 0 0 0 0 0 15500 11500 0 0 4000 0 79 0 2 2 2 100 3.79746842 0 0 0 0 100 0 0 77 3 16.6998844 16.6998844 1987 Yes No No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Once a day (365) No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.5680799 14.5680799 1988 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No 100+ 100+ 100+ Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 11 to 20 Have not spent anything Have not spent anything Have not spent anything 100+ 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No Yes No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 28 21500 20000 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21500 1500 0 0 0 20000 5 1 0 1 0 0 0 0 0 1 1 100 100 0 4 1 16.6998844 16.6998844 1991 Yes No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes Yes No Yes Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes Yes Yes No Yes Yes Yes Yes No No No No No No No No No Yes No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) No No Yes No No No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No Yes Yes No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban England North West North White British White No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0 1 2 1 0 0 0 0 0 0 10 1 0 1 2 1 10 1 0 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 100 100 1500 0 0 0 1500 0 15 0 15 15 0 0 0 0 0 15 15 100 100 0 0 2 13.5682125 13.5682125 1992 Yes No No No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 3 3 No Yes No Phone Urban Scotland Scotland North Any other Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 13.4516592 13.4516592 1993 Yes No No No No Yes No No No Yes No No No Yes No No No Yes No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No Once a day (365) Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 11 to 20 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 None 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 Have not spent anything 1 to 10 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 100% 1 to 10 1% to 24% None None None 100% 1 to 10 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Rural Wales Wales Midlands White British White Yes No Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No Yes No Yes No No No Yes CAWI Adults 26 1200 0 0 0 0 1200 0 0 0 0 0 0 3300 1300 0 2000 0 0 0 1000 1000 0 0 0 0 0 4 0 0 14 2 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 3 3 0 0 0 0 0 0 0 0 14 2 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 3700 2000 0 400 1300 0 20 4 0 4 4 100 5 0 0 0 0 100 0 3 16 3 13.2410421 13.2410421 1994 Yes Yes No No No No No No No No No No No Yes Yes No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes No No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Don't know Don't know Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England London South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 34 3000 0 0 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4500 4500 0 9 0 0 0 6 10 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 9 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 7500 7500 0 0 0 0 25 0 6 6 0 0 0 0 0 6 6 100 100 0 19 1 17.9305305 17.9305305 1995 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No Yes No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 41 to 50 Have not spent anything Have not spent anything 11 to 20 100% 11 to 20 41 to 50 41 to 50 Have not spent anything 11 to 20 None 11 to 20 100+ 100+ Have not spent anything 11 to 20 100% 11 to 20 100+ 100+ 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 51 to 100 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 41 to 50 Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 100+ Have not spent anything 100+ Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 100% 1 to 10 100+ 100+ Have not spent anything Have not spent anything 100+ Have not spent anything 101 to 200 1 to 10 1 to 10 None None 41 to 50 25% to 49% None None None None None None 1 to 10 101 to 200 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 32 5000 0 0 5000 0 0 5000 5000 0 40000 40000 0 60000 20000 20000 20000 0 0 0 20000 0 20000 0 5000 5000 0 20 20 20 51 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 20 0 20 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 20 20 20 50 0 1 0 100 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 115000 95000 0 0 20000 0 112 0 1 1 0 0 36.9369354 0 0 1 0 0 0 1 111 1 14.5680799 14.5680799 1996 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No No No Yes No Yes No No No No No No Yes No No No No Yes Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No No Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes Yes Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes Yes No No No No 100+ Have not spent anything Have not spent anything Have not spent anything 3 3 51 to 100 51 to 100 Every 2-3 weeks (30) 101 to 200 41 to 50 41 to 50 41 to 50 100% 50% to 74% None None 100% 51 to 100 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 11 to 20 11 to 20 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 41 to 50 41 to 50 21 to 30 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very Unlikely (1) 20 to 30 Have not spent anything 20 to 30 Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 101 to 200 41 to 50 51 to 100 101 to 200 None None 11 to 20 1% to 24% 101 to 200 75% to 99% 75% to 99% Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 20 to 30 11 to 20 20 to 30 Have not spent anything 201 to 500 51 to 100 51 to 100 101 to 200 41 to 50 25% to 49% 51 to 100 50% to 74% 11 to 20 1% to 24% 101 to 200 75% to 99% 101 to 200 75% to 99% None 51 to 100 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes No Yes Yes No No No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No Yes No Yes Yes No No No No No No No No Yes No No No No No Yes No Yes No No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No Yes Yes Yes No Yes Yes Yes Yes Yes No No Yes No No No No No No Very confident (4) No No No No No No No No No No No No Yes No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 3 3 No Yes No Phone Urban England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 11500 0 0 2500 3000 6000 0 0 0 1500 1500 0 4200 3000 1200 0 0 0 0 3000 0 3000 0 0 0 0 105 1 4 1 150 0 45 1 3 1 50 0 0 0 0 0 100 0 45 1 3 1 150 0 45 1 3 1 0 0 60 0 0 0 0 0 0 0 0 0 18 0 0 0 0 0 0 120 0 0 0 0 0 0 0 0 0 60 0 1 0 0 0 100 57.1428566 0 0 100 100 0 0 0 100 100 0 0 0 100 100 0 0 0 0 100 0 0 12 80 80 0 0 0 0 0 15000 7000 3000 2000 3000 0 261 100 100 200 50 25 54.0540543 18 9 150 120 85 80 0 61 3 17.9305305 17.9305305 1997 Yes Yes Yes Yes No Yes No No No No No No No Yes Yes No No No No Yes No No Yes No No No No No No Yes No Yes Yes No No Yes No No No No No No Several times a day (730) Yes Yes No Yes Yes Yes No No No No No Yes Yes Yes No Yes Yes Yes No Yes No No No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No No Yes No No No Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No Yes Yes No No No Yes No 3 1 to 10 Have not spent anything 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 31 to 40 21 to 30 21 to 30 21 to 30 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 1 to 10 Have not spent anything 21 to 30 Have not spent anything Have not spent anything 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 25% to 49% None None None 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a month (12) About once a month (12) 21 to 30 1 to 10 11 to 20 21 to 30 None None None None 21 to 30 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 1 to 10 Have not spent anything 11 to 20 1 to 10 51 to 100 41 to 50 11 to 20 51 to 100 21 to 30 25% to 49% None None None None 21 to 30 75% to 99% 21 to 30 75% to 99% None 1 to 10 Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Yes No Yes Yes Yes No No Yes Yes Yes No No No No No Yes No No No Yes No Yes No No No No No No Yes No Yes Yes Yes Yes Yes No No No No No Yes No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 1 1 Yes Yes No Phone Urban England North West North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 29 3000 0 1000 2000 0 0 8000 8000 0 0 0 0 4500 1000 0 3000 0 0 500 500 0 0 500 0 0 0 31 1 0 6 30 0 30 0 0 5 10 0 0 0 0 0 20 0 30 0 0 5 30 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 30 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 0 0 0 100 100 0 0 0 0 0 16500 13000 500 0 2000 1000 68 45 20 65 30 46.1538467 0 0 0 35 30 92.3076935 85.7142868 0 3 1 16.6998844 16.6998844 1998 Yes Yes Yes No No No No No Yes Yes Yes No No Yes Yes No No No Yes Yes Yes No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No Several times a day (730) Yes No Yes Yes No Yes No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No Yes No No No Yes Yes No No No Yes No Yes Yes No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No Yes No No No No No Yes Yes Yes No No No No Yes Yes Yes Yes No No No No Yes Yes Yes No No No Yes No 31 to 40 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 2-3 times a week (130) About once a week (52) 101 to 200 31 to 40 51 to 100 101 to 200 1 to 10 1% to 24% 1% to 24% 1 to 10 1% to 24% 51 to 100 50% to 74% 50% to 74% 31 to 40 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 51 to 100 31 to 40 51 to 100 About once a week (52) 51 to 100 41 to 50 41 to 50 21 to 30 50% to 74% 75% to 99% 1 to 10 1% to 24% 11 to 20 50% to 74% 75% to 99% 31 to 40 1 to 10 1 to 10 1 to 10 2-3 times a week (130) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 50% to 74% 1 to 10 75% to 99% 1 to 10 50% to 74% 75% to 99% 1 to 10 31 to 40 11 to 20 1 to 10 1 to 10 11 to 20 Have not spent anything Have not spent anything 1 to 10 1 to 10 25% to 49% 1 to 10 100+ 51 to 100 41 to 50 Have not spent anything 51 to 100 50% to 74% 51 to 100 51 to 100 51 to 100 Have not spent anything 31 to 40 50% to 74% 31 to 40 100+ 100+ 51 to 100 1 to 10 11 to 20 1 to 10 201 to 500 51 to 100 51 to 100 101 to 200 31 to 40 1% to 24% 101 to 200 50% to 74% 11 to 20 1% to 24% 51 to 100 50% to 74% 51 to 100 50% to 74% None 101 to 200 Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Strongly disagree (-4) No Yes No No Yes No Yes No No No No No No No Yes No Yes Yes No Yes No No No No No No No No No No Yes No No No Yes No No Yes No No No No No No No No No Yes Yes No Yes No No No No No No No Yes Yes Yes No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No No No No Yes No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 5+ 5+ Yes Yes No Phone Urban England West Midlands Midlands Pakistani Minority Ethnic Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes No Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 3400 0 600 700 900 1200 8800 3200 5600 914 507 407 3600 500 200 1900 0 0 1000 10100 5600 4500 0 5600 5600 0 146 81 11 5 54 34 34 45 5 0 0 0 78 0 3 0 0 0 112 45 8 0 0 0 6 23 6 0 0 0 5 46 5 2 32 24 4 4 6 0 0 0 0 56 13 1 0 0 0 0 0 0 0 0 0 0 0 34 36 3 5 54 34 5.35714293 12.5 3.57142854 52.8301888 55.3571434 51.1111107 77.9661026 8.88888931 59.0909081 80 75 55.5555573 75 50 87.5 0 40 0 0 0 0 0 59.2592583 0 0 0 0 70.5882339 0 0 0 25814 16407 6907 400 1500 600 331 84 81 165 35 21.212122 56.7164192 14 8.48484802 130 70 63.636364 53.8461533 0 166 5 13.2410421 13.2410421 1999 No No No No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 100+ 41 to 50 Have not spent anything 41 to 50 51 to 100 Have not spent anything Have not spent anything 1 to 10 25% to 49% 1 to 10 100+ 100+ Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 41 to 50 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything 51 to 100 41 to 50 11 to 20 1 to 10 1% to 24% Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No Yes Yes Yes 5+ 5+ Yes Yes No Phone Urban England London South Pakistani Minority Ethnic No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 32 11000 0 5000 6000 0 0 12500 12500 0 6000 6000 0 7500 4500 1000 1000 0 0 1000 0 0 0 0 0 0 0 5 8 2 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 8 2 4 0 0 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36000 25500 0 0 5500 5000 19 0 0 0 0 0 10.5263157 0 0 0 0 0 0 0 19 5 14.5680799 14.5680799 2000 Yes Yes No No No No No No No Yes No Yes No Yes Yes No No No No Yes Yes No No No No No No Yes No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 11 to 20 11 to 20 11 to 20 100% None None None None None 100% None 1 to 10 Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No Yes No No No No No No No No Yes Yes No Yes Yes Yes Yes Yes No Yes No No No No No Very confident (4) Yes No Yes Yes No No No No No No No No No No Yes No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 1 1 Yes Yes No Phone Urban England East Midlands Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 600 0 0 0 0 0 0 0 0 0 0 20 0 0 1 0 0 20 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 21 20 0 20 20 100 0 0 0 0 0 100 0 0 1 1 16.2971992 16.2971992 2001 Yes No Yes No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Every 2-3 weeks (30) 21 to 30 11 to 20 11 to 20 21 to 30 None None None None None None None Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 31 to 40 20 to 30 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 11 to 20 11 to 20 21 to 30 None None None None None None None None None None None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 1900 1400 500 0 0 0 0 0 0 0 0 2500 2500 0 24 0 0 0 0 2 12 0 0 0 0 0 12 0 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3900 2500 0 0 1400 0 26 12 12 24 0 0 0 0 0 24 0 0 0 0 2 2 16.2971992 16.2971992 2002 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No Yes Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know Don't know Don't know 51 to 100 51 to 100 1 to 10 51 to 100 41 to 50 50% to 74% 1% to 24% 11 to 20 25% to 49% 1 to 10 1% to 24% 75% to 99% 1 to 10 1 to 10 1 to 10 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything 11 to 20 1 to 10 50% to 74% 1 to 10 51 to 100 11 to 20 51 to 100 Have not spent anything 1 to 10 25% to 49% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything Have not spent anything 31 to 40 Have not spent anything 51 to 100 51 to 100 1 to 10 51 to 100 41 to 50 50% to 74% 1 to 10 1% to 24% 11 to 20 25% to 49% 1 to 10 1% to 24% 1 to 10 75% to 99% 1 to 10 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No No No Yes Yes Yes 5+ 5+ Yes No No Phone Urban England West Midlands Midlands African Minority Ethnic Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 32 0 0 0 0 0 0 0 0 0 5000 5000 0 8000 2000 2000 2000 0 0 2000 7400 2000 5400 0 1000 1000 0 68 0 1 2 5 3 60 0 0 0 0 0 8 0 0 0 0 0 68 0 0 0 0 0 50 0 0 0 0 0 3 0 0 1 2 0 18 0 0 0 0 0 0 2 0 0 0 0 0 4 3 3 0 0 0 0 0 0 0 1 2 5 3 73.5294113 6 26.4705887 11.1111107 76.4705887 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 40 0 0 0 0 0 0 0 0 17400 13400 0 0 4000 0 79 60 8 68 50 73.5294113 9.83606529 18 26.4705887 18 2 76.4705887 11.1111107 3 11 5 13.2410421 13.2410421 2003 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 5400 2000 2000 1400 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3400 1400 0 0 2000 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 17.9305305 17.9305305 2004 Yes Yes Yes No No Yes Yes No No No No No Yes Yes No No No No No Yes No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Don't know Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No Very confident (4) Yes No No Yes No No No No No No No No No No No No No Yes No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Urban England North West North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 600 0 0 0 600 0 600 0 500 500 0 0 0 0 2 4 1 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1700 1700 0 0 0 0 7 0 4 4 0 0 0 0 0 4 4 100 100 0 3 3 13.5682125 13.5682125 2005 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No Yes No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything 11 to 20 11 to 20 11 to 20 1 to 10 1% to 24% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No Yes No No No No No Yes No No No No Yes Yes No No Yes No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 4 4 Yes Yes No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 700 0 0 0 0 0 700 700 0 0 700 500 500 0 0 0 0 2 10 2 0 0 0 0 0 0 0 0 0 2 10 0 0 0 0 2 10 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 2600 500 700 0 1400 0 14 0 12 12 2 16.666666 0 0 0 10 10 100 100 0 2 4 16.2971992 16.2971992 2006 Yes No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly disagree (-4) Strongly disagree (-4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) No No No No No Yes No No Yes No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes No 4 4 Yes Yes No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 13.2410421 13.2410421 2007 Yes Yes Yes Yes No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No Yes No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes Yes No Yes Yes No 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything About once a month (12) Less often (6) 41 to 50 21 to 30 11 to 20 41 to 50 21 to 30 50% to 74% None None None 11 to 20 100% 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 21 to 30 Have not spent anything 21 to 30 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 1 to 10 51 to 100 Have not spent anything 1 to 10 Have not spent anything 51 to 100 31 to 40 41 to 50 51 to 100 21 to 30 25% to 49% None None None None 51 to 100 100% 51 to 100 100% None 1 to 10 Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes No Yes No No No No Yes No Yes No No No Yes No No No No Yes No No Yes Yes Yes No No No No Yes No Yes No Yes No Yes No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England South West South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 3000 0 0 0 3000 0 1000 1000 0 0 0 0 1000 0 0 0 0 0 1000 0 0 0 0 3000 0 3000 50 1 0 0 30 10 30 0 0 0 0 10 20 0 0 0 30 0 50 0 0 0 30 10 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 30 10 0 0 0 0 0 0 0 0 0 1 0 0 0 0 60 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 8000 1000 6000 0 1000 0 91 40 50 90 30 33.3333321 0 0 0 60 60 100 100 0 1 2 17.9305305 17.9305305 2008 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No Yes No Yes No Yes No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes No Yes No No No No Yes No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No Yes No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No Yes No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 Less often (6) Every 2-3 weeks (30) 51 to 100 11 to 20 31 to 40 51 to 100 None None None None None 51 to 100 100% 100% 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything 21 to 30 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 31 to 40 11 to 20 11 to 20 Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 1 to 10 100% None 1 to 10 1% to 24% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 11 to 20 31 to 40 41 to 50 Have not spent anything 51 to 100 31 to 40 51 to 100 51 to 100 21 to 30 25% to 49% None None 1 to 10 1% to 24% 51 to 100 100% 51 to 100 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Yes Yes Yes No No No No Yes No No No No No Yes Yes No Yes Yes Yes No No Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England London South Any other white White Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 1300 0 0 1000 0 300 2500 2500 0 0 0 0 8000 5000 0 0 0 3000 0 0 0 0 0 4000 2000 2000 61 2 0 10 1 13 20 1 0 0 0 10 40 0 0 10 1 0 60 1 0 10 1 10 0 1 0 10 0 10 0 0 0 0 0 0 0 0 0 0 0 1 0 60 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 3 0 0 0 100 100 100 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 100 0 10 0 100 15600 5500 2000 3100 5000 0 87 31 51 82 21 25.6097565 0 1 1.21951222 61 61 100 100 0 5 2 17.9305305 17.9305305 2009 No No No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No Yes No No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None None None None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes Yes No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 0 0 0 1 0 0 0 0 0 10 0 0 0 0 0 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 1 10 11 0 0 0 0 0 11 0 0 0 0 0 2 16.6998844 16.6998844 2010 Yes Yes No No No Yes Yes No No No No No No Yes Yes No No No No No Yes No No No No No No Yes No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No Yes No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None None None 100% None None Slightly disagree (-2) Don't know Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No Yes No No No No Yes No No No No No No No No Yes Yes No No No Yes Yes Yes No No No No Slightly confident (3) No No No No No No No No No No No Yes No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 33 500 0 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 500 0 0 0 20 20 0 20 20 100 0 0 0 0 0 100 0 0 0 2 17.3453598 17.3453598 2011 Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Rural Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 13.2465572 13.2465572 2022 Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes Yes No Yes Yes No Yes No No No Yes Yes Yes No Yes No No Yes No No No No No No No No No Yes Yes No No No Yes Yes Yes No Yes Yes No Yes No No No Yes Yes Yes No Yes No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 100% 1 to 10 50% to 74% 1 to 10 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 31 to 40 11 to 20 11 to 20 About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 25% to 49% 1 to 10 25% to 49% 1 to 10 25% to 49% 50% to 74% 1 to 10 41 to 50 41 to 50 Have not spent anything 1 to 10 100% 1 to 10 100+ 100+ 51 to 100 41 to 50 11 to 20 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 50% to 74% 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 25% to 49% 50% to 74% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) 100+ 100+ 41 to 50 41 to 50 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 50% to 74% 1 to 10 100% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything Less often (6) Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 100+ 100+ 51 to 100 Have not spent anything 100+ Have not spent anything 21 to 30 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 75% to 99% 1 to 10 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No Yes No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 4 4 Yes No No Phone Urban England London South White & Black African Minority Ethnic Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes No No No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 34 0 0 0 0 0 0 4000 2000 2000 5000 5000 0 17000 10000 5000 2000 0 0 0 25020 15020 5000 5000 1000 1000 0 2 6 1 5 9 3 1 2 0 2 4 1 1 2 0 2 0 1 2 4 0 4 4 2 1 1 0 1 3 1 1 1 1 1 5 1 1 1 0 1 4 1 2 1 1 0 1 1 1 0 0 0 0 0 0 0 1 0 2 1 1 5 1 50 100 50 100 100 25 33.3333321 25 33.3333321 50 0 100 0 0 0 25 50 25 50 33.3333321 50 75 62.5 100 100 100 50 50 50 100 100 37000 15000 7000 0 15000 0 26 10 6 16 7 43.75 58.8235283 8 50 9 5 75 55.5555573 1 10 4 17.9305305 17.9305305 2045 Yes No Yes Yes Yes Yes Yes No No No No No No Yes No No No Yes No Yes No No No No No No No No No Yes No No No Yes Yes No No No No No No No Several times a day (730) Yes Yes No Yes No Yes No Yes No No No Yes Yes No No No Yes Yes No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes Yes No No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No Yes No No No No No No No 100+ 31 to 40 11 to 20 3 1 to 10 11 to 20 100+ 100+ 2-3 times a week (130) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 25% to 49% 50% to 74% 1 to 10 25% to 49% 1 to 10 25% to 49% 50% to 74% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 51 to 100 21 to 30 1 to 10 11 to 20 Have not spent anything Have not spent anything 11 to 20 1 to 10 100% 1 to 10 51 to 100 11 to 20 20 to 30 41 to 50 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 50% to 74% 75% to 99% 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 51 to 100 51 to 100 51 to 100 31 to 40 21 to 30 1 to 10 1 to 10 1 to 10 25% to 49% 11 to 20 50% to 74% 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time Any Yes No Yes Yes No Yes No 4 4 Yes No No Phone Urban England London South Indian Minority Ethnic Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 31800 1200 2300 500 1100 26700 200 200 0 2400 2400 0 7500 2500 1000 2000 0 0 2000 7900 1200 2300 4400 2300 2300 0 13 1 1 1 5 1 0 0 0 0 0 0 6 0 0 0 4 0 6 0 0 0 4 0 2 0 0 0 2 0 5 1 1 1 2 1 2 0 0 0 2 0 0 1 0 0 0 1 0 4 1 1 0 0 0 0 0 7 1 1 1 1 1 33.3333321 55.5555573 33.3333321 25 50 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 50 66.6666641 50 50 75 0 100 0 0 0 36500 9700 5500 8900 8900 3500 22 0 10 10 4 40 68.75 4 40 6 2 60 33.3333321 1 12 4 12.5546675 12.5546675 2048 Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No No Yes Phone Rural England South East South White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 1000 1000 0 0 0 0 1700 1200 0 500 0 0 0 0 0 0 0 0 0 0 0 1 0 2 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2700 1500 0 0 1200 0 13 0 10 10 0 0 0 0 0 10 10 100 100 0 3 2 18.6235714 18.6235714 2054 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes No Yes No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No Yes Yes Yes 5+ 5+ Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 4 4 0 4 0 0 0 0 0 4 4 100 100 0 0 5 11.6929893 11.6929893 2061 No Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 16.2971992 16.2971992 2067 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes Yes 5+ 5+ No Yes No Phone Urban England London South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 12.5546675 12.5546675 2070 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No No No No Yes No No Yes No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 51 to 100 31 to 40 31 to 40 51 to 100 None None 100% 1 to 10 1% to 24% 51 to 100 100% 100% 1 to 10 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None 41 to 50 Have not spent anything Have not spent anything Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 41 to 50 41 to 50 51 to 100 None None 1 to 10 1% to 24% 1 to 10 1% to 24% 51 to 100 75% to 99% 51 to 100 75% to 99% None 11 to 20 Strongly agree (4) Don't know Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Rural England East Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 26 1000 0 0 1000 0 0 0 0 0 0 0 0 4500 0 0 4500 0 0 0 2000 0 2000 0 1200 1200 0 81 0 1 8 3 3 40 0 1 0 0 0 40 0 0 0 3 0 80 0 1 0 3 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 80 0 0 0 3 0 0 0 0 0 0 0 0 0 1 0 0 8 0 3 0 100 1.25 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 8700 8700 0 0 0 0 96 41 43 84 0 0 8.33333302 1 1.19047618 84 83 98.8095245 98.8095245 0 12 2 16.9271107 16.9271107 2094 Yes Yes No Yes Yes Yes Yes No No No No No No Yes Yes Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes No No Yes Yes Yes No No No No No Yes No No Yes Yes No Yes No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 11 to 20 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 1 to 10 25% to 49% 25% to 49% 1 to 10 50% to 74% 1 to 10 25% to 49% 1 to 10 50% to 74% 75% to 99% Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 41 to 50 20 to 30 11 to 20 Have not spent anything Most days (365) Most days (365) 31 to 40 21 to 30 21 to 30 1 to 10 25% to 49% None 1 to 10 1% to 24% 11 to 20 50% to 74% 75% to 99% 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 1 to 10 Have not spent anything 11 to 20 41 to 50 41 to 50 11 to 20 21 to 30 41 to 50 11 to 20 25% to 49% 1 to 10 1% to 24% 1 to 10 1% to 24% 11 to 20 50% to 74% 11 to 20 75% to 99% 11 to 20 1 to 10 Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Yes Yes No Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No Yes Yes No Yes No No No No No Yes No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No Yes No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time Any Yes No Yes No No Yes No 5+ 5+ No Yes No Phone Urban England Yorkshire and The Humber North Pakistani Minority Ethnic Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No Yes No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 5000 5000 0 0 0 0 0 0 0 0 0 0 3200 2000 1000 0 200 0 0 5000 3000 2000 0 500 500 0 0 0 0 12 33 4 0 0 0 12 0 0 0 0 0 0 30 0 0 0 0 12 30 0 0 0 0 3 10 0 0 0 0 1 0 0 0 0 0 7 2 0 5 0 0 0 6 14 0 0 0 0 0 0 0 15 0 0 0 0 0 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 33.3333321 58.3333321 41.6666679 66.6666641 75 33.3333321 0 6.66666651 70 80 0 0 0 0 0 9700 2500 200 0 2000 5000 49 12 30 42 13 30.9523811 5 9 21.4285717 29 20 78.5714264 68.9655151 15 7 5 17.3453598 17.3453598 2097 Yes No Yes No No Yes No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No No No Yes Yes No Yes No No No No No No Several times a day (730) No No Yes No No Yes No No No No No Yes Yes No Yes No No Yes Yes No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No Yes No No No No Yes No No No No No No No No No No No Yes No No No No No No Yes No No Yes No Yes No No Yes No No No No No No No 51 to 100 51 to 100 31 to 40 11 to 20 Have not spent anything Have not spent anything 3 3 2-3 times a week (130) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 51 to 100 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 100+ 51 to 100 51 to 100 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 25% to 49% 1 to 10 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 51 to 100 1 to 10 31 to 40 51 to 100 21 to 30 1 to 10 1 to 10 11 to 20 11 to 20 100% 1 to 10 1% to 24% None None None 100% 1 to 10 11 to 20 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) No Yes No No No Yes No No No No No No No No Yes No No No Yes No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England London South Indian Minority Ethnic No Yes Yes Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes CAWI Adults 27 8200 4000 1200 0 0 3000 14000 7000 7000 5000 5000 0 3900 3000 0 0 0 0 900 2000 1000 1000 0 3900 3900 0 10 7 2 0 3 4 0 3 0 0 0 0 10 0 0 0 0 0 10 3 0 0 0 0 10 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 10 10 0 0 0 0 0 0 4 2 0 3 4 100 0 0 0 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 33.3333321 0 0 0 0 0 0 0 0 34000 16900 7000 1000 3900 5200 26 3 10 13 13 100 3.84615374 0 0 0 0 100 0 10 13 2 18.6235714 18.6235714 2104 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No Yes Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No No Yes Yes Yes Yes 5+ 5+ Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 13.5682125 13.5682125 2106 Yes Yes Yes No Yes No No No No No No No No Yes Yes No No No No No Yes No Yes No No No No No No No Yes No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 Have not spent anything 21 to 30 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 20 to 30 Have not spent anything 20 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None None Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Don't know No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No Yes No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England North East North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 0 2500 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 2500 0 2500 0 0 0 6 6 0 6 6 100 0 0 0 0 0 100 0 0 0 2 17.3453598 17.3453598 2111 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Don't know Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 17.3453598 17.3453598 2124 Yes No No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) Yes No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 11 to 20 11 to 20 11 to 20 None None 11 to 20 100% 11 to 20 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 11 to 20 1 to 10 21 to 30 None None None None 11 to 20 75% to 99% 21 to 30 100% 21 to 30 100% None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Yes Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Rural England East Midlands Midlands White British White Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 1700 1700 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 6 0 20 0 0 0 0 0 0 0 0 0 6 0 20 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 20 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1700 0 0 0 1700 0 26 20 6 26 0 0 0 20 76.9230804 26 26 100 100 0 0 1 13.2410421 13.2410421 2134 Yes No No No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes Yes Yes No No No No No No No Several times a day (730) No No No No No No No Yes No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 Have not spent anything 21 to 30 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 Have not spent anything 20 to 30 Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None None Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No Yes No Yes No No No No No Yes Yes No Yes Yes No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 748 0 0 0 0 0 748 0 0 0 0 2300 0 2300 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 3048 0 2300 0 748 0 4 4 0 4 4 100 0 0 0 0 0 100 0 0 0 2 16.9271107 16.9271107 2140 Yes Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 11 to 20 1 to 10 1 to 10 11 to 20 None None 1 to 10 75% to 99% None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 1 to 10 75% to 99% None None None None None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Yes No Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 6 6 12 0 0 0 9 75 12 0 0 0 0 0 1 16.6998844 16.6998844 2145 Yes Yes No No No Yes No No No Yes Yes Yes No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes Yes Yes No No No No No Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes Yes Yes Yes Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 101 to 200 101 to 200 101 to 200 None None None None 101 to 200 75% to 99% 75% to 99% Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 201 to 500 201 to 500 201 to 500 None None None None None None 201 to 500 75% to 99% 201 to 500 75% to 99% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 700 700 0 0 0 0 0 0 0 0 0 1800 1800 0 140 0 50 30 50 4 0 0 0 0 0 0 140 0 50 30 50 0 140 0 50 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 0 50 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 85.7142868 85.7142868 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2500 1800 0 0 700 0 274 0 270 270 0 0 0 0 0 270 220 81.4814835 81.4814835 0 4 2 13.5682125 13.5682125 2151 Yes Yes Yes Yes No Yes No No No No Yes No No No No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 51 to 100 Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 7500 7500 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10000 2500 0 0 7500 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 17.9305305 17.9305305 2159 Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No Once a day (365) No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No 41 to 50 3 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 25% to 49% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 50% to 74% 1 to 10 31 to 40 21 to 30 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 20 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 11 to 20 20 to 30 11 to 20 1 to 10 50% to 74% Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No No Yes No No Yes 3 3 Yes No No Phone Urban England London South White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 34 4300 1400 1400 1500 0 0 1500 1500 0 1500 1500 0 3800 1200 1200 1400 0 0 0 3000 1500 1500 0 1400 1400 0 4 3 4 2 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 2 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 4 2 2 3 0 25 0 0 0 0 100 0 0 0 0 50 0 0 0 0 50 0 0 0 0 0 100 0 0 0 0 0 0 0 0 12800 8800 0 0 1200 2800 18 0 0 0 0 0 50 0 0 0 0 0 0 0 18 3 18.6235714 18.6235714 2175 Yes No Yes Yes No Yes No No No Yes No Yes No Yes No No No No No Yes No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 Have not spent anything Have not spent anything Have not spent anything 100+ 1 to 10 None None Slightly disagree (-2) Don't know Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 5+ 5+ Yes Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 29 20000 20000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24000 4000 0 0 0 20000 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 18.6235714 18.6235714 2182 Yes No No No No Yes No No Yes Yes No Yes No Yes No No No Yes Yes No No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes Yes Yes No Yes Yes No Yes No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No Yes Yes No Yes No No No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 41 to 50 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 31 to 40 1 to 10 21 to 30 31 to 40 21 to 30 75% to 99% None None None 1 to 10 25% to 49% None None 75% to 99% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) Most days (365) 51 to 100 21 to 30 21 to 30 51 to 100 None None None None None None None 21 to 30 11 to 20 1 to 10 About once a week (52) 21 to 30 1 to 10 1 to 10 1 to 10 50% to 74% 1% to 24% None None None None 50% to 74% 11 to 20 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 100+ 41 to 50 1 to 10 Have not spent anything 41 to 50 Have not spent anything 101 to 200 41 to 50 51 to 100 101 to 200 31 to 40 25% to 49% 1 to 10 1% to 24% None None None None None 25% to 49% None 21 to 30 Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Slightly disagree (-2) Yes Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No Yes No No No No No No Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 3 3 Yes Yes No Phone Urban England North East North White British White Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes No No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 0 0 0 0 0 0 2000 2000 0 0 0 0 5500 4500 0 1000 0 0 0 0 0 0 0 3000 2000 1000 0 2 0 37 60 30 0 0 0 5 30 10 0 0 0 30 30 0 0 0 0 35 60 10 0 0 0 30 0 6 0 0 0 0 0 5 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85.7142868 0 0 28.5714283 0 85.7142868 0 0 0 0 0 60 19.2307701 0 0 60 10500 5000 1000 0 4500 0 129 45 60 105 36 34.2857132 8.33333302 0 0 69 0 34.2857132 0 0 24 3 16.6998844 16.6998844 2186 Yes Yes Yes No No Yes No No No No No Yes No Yes Yes No No No No No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes No Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No Yes Yes No No No No 51 to 100 11 to 20 11 to 20 Have not spent anything Have not spent anything 31 to 40 Have not spent anything Have not spent anything About once a month (12) About once a week (52) 101 to 200 51 to 100 51 to 100 101 to 200 51 to 100 25% to 49% 25% to 49% None None 51 to 100 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) 51 to 100 51 to 100 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 51 to 100 Have not spent anything 51 to 100 Less often (6) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None 1 to 10 100% 100% 51 to 100 31 to 40 31 to 40 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 100+ Have not spent anything 31 to 40 11 to 20 101 to 200 51 to 100 51 to 100 101 to 200 51 to 100 25% to 49% 11 to 20 25% to 49% None None 51 to 100 100% 51 to 100 100% None 1 to 10 Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes No No No No Yes No No No No No Yes Yes No Yes Yes Yes Yes No Yes Yes Yes No No No No Yes Yes No Yes Yes No Yes Yes No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No Yes No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England London South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 5500 1500 0 0 4000 0 6000 6000 0 7000 0 7000 6000 4000 0 2000 0 0 0 0 0 0 0 3600 3600 0 140 9 4 3 0 2 60 0 1 0 0 0 80 5 3 0 0 0 140 5 4 0 0 0 60 5 1 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 80 0 3 0 0 0 0 0 0 0 0 0 0 0 0 4 0 3 0 2 42.8571434 33.3333321 0 100 100 100 0 0 0 100 25 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28100 11600 11000 0 4000 1500 158 61 88 149 66 44.2953033 26.666666 0 0 83 83 100 100 0 9 2 17.9305305 17.9305305 2188 No Yes No No No No Yes No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No No Yes No No No No No No No No Several times a day (730) Yes No No No No Yes No Yes No No No Yes No No No No Yes No Yes No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No Yes Yes No No No No No No Yes No No Yes Yes No No 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything About once a week (52) 21 to 30 11 to 20 11 to 20 11 to 20 100% 1% to 24% 1 to 10 25% to 49% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 31 to 40 1 to 10 11 to 20 Have not spent anything Have not spent anything 1 to 10 11 to 20 1% to 24% 11 to 20 1 to 10 Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 100+ 51 to 100 11 to 20 About once a week (52) Most days (365) 41 to 50 1 to 10 11 to 20 21 to 30 11 to 20 50% to 74% 1% to 24% 1 to 10 25% to 49% 1 to 10 100% 100% 11 to 20 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) 100+ 100+ 20 to 30 Have not spent anything 41 to 50 11 to 20 51 to 100 21 to 30 21 to 30 51 to 100 31 to 40 50% to 74% 11 to 20 1% to 24% 11 to 20 25% to 49% 11 to 20 100% 11 to 20 100% None 21 to 30 Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Urban England London South White & Asian Minority Ethnic Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 26 3700 1200 0 1500 1000 0 1200 1200 0 0 0 0 7000 4000 500 2000 0 0 500 1000 0 1000 0 12000 10000 2000 25 1 0 12 10 42 20 0 0 0 0 10 0 0 0 0 10 20 20 0 0 0 10 30 20 0 0 0 0 20 5 0 0 2 0 6 5 0 0 0 0 10 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 5 1 0 12 0 12 100 20 25 0 100 0 0 0 0 0 0 0 0 0 0 0 16.666666 0 0 0 0 0 0 0 100 100 66.6666641 18.75 33.3333321 100 100 24400 15700 3000 0 4500 1200 90 30 30 60 40 66.6666641 18.5714283 15 25 20 20 100 100 0 30 4 18.6235714 18.6235714 2194 Yes Yes No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No Yes No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes Yes Yes No Yes No No No Yes Yes Yes No Yes Yes Yes Yes No No No Yes No Yes Yes Yes Yes No Yes No No No Yes No Yes Yes Yes Yes No No No No No Yes Yes Yes No Yes Yes Yes Yes No No No Yes No Yes Yes Yes Yes No Yes No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No 3 3 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) Every 2-3 weeks (30) 501 to 1000 201 to 500 51 to 100 501 to 1000 None None None None 501 to 1000 100% 100% 501 to 1000 201 to 500 201 to 500 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) About once a week (52) 21 to 30 11 to 20 1 to 10 21 to 30 None None None None 21 to 30 100% 100% 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 20 to 30 501 to 1000 501 to 1000 101 to 200 501 to 1000 None None None None None None 501 to 1000 100% 501 to 1000 100% 501 to 1000 None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No Yes No Yes Yes No No No No Yes No No No No No No Yes Yes No No Yes No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Urban England London South White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes No Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 28 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 20 1 5 30 3 500 10 1 4 20 0 100 10 0 1 10 3 600 20 1 5 30 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 20 1 5 30 3 1000 500 500 10 1 4 20 3 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 100 100 0 0 0 0 100 100 0 0 0 100 100 0 0 0 100 100 3000 0 0 0 0 3000 659 535 124 659 0 0 0 0 0 659 659 100 100 538 0 2 17.9305305 17.9305305 2197 Yes Yes Yes Yes No Yes No No No No No No No Yes Yes No No No No Yes No No Yes No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes Yes No Yes Yes Yes Yes Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything None None None Strongly disagree (-4) Strongly disagree (-4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England North East North White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 3500 2000 0 0 0 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 0 0 0 3500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 17.3453598 17.3453598 2198 Yes Yes Yes No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No No Yes No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 1 to 10 1% to 24% None None None 21 to 30 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 31 to 40 1 to 10 41 to 50 Have not spent anything 21 to 30 Have not spent anything 2-3 times a week (130) 21 to 30 11 to 20 11 to 20 11 to 20 100% None None None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 31 to 40 31 to 40 31 to 40 None None None None None None None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything 20 to 30 31 to 40 Have not spent anything 101 to 200 51 to 100 51 to 100 21 to 30 25% to 49% None None None None 21 to 30 25% to 49% 21 to 30 50% to 74% None 21 to 30 Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No Yes No No No Yes Yes No No No No No No No No Yes No No No No No No Yes No Yes No No Yes No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time Any Yes No No Yes No No Yes 2 2 No Yes No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 0 0 0 0 0 0 3000 3000 0 0 0 0 12080 3080 1000 5000 0 3000 0 0 0 0 0 3000 3000 0 0 28 0 30 36 8 0 0 0 0 0 0 0 25 0 20 36 0 0 25 0 20 36 0 0 3 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 10 0 8 0 0 0 0 0 12 0 0 100 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 17080 11000 0 3000 3080 0 102 0 81 81 23 28.3950615 0 0 0 58 22 55.5555573 37.9310341 0 21 2 16.9271107 16.9271107 2206 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes Yes Yes Yes No 5+ 5+ Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 11.6929893 11.6929893 2214 Yes No No No No Yes Yes No No No No No No Yes No No No Yes No No Yes No No No No No No Yes No Yes No Yes Yes Yes No No No No No No No No Several times a day (730) Yes Yes No Yes No Yes Yes No No No No No Yes No Yes No Yes No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) Most days (365) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 11 to 20 1 to 10 21 to 30 1 to 10 1% to 24% None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes No No No No Yes No No No No Yes Yes Yes Yes No No No No No Yes No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes Yes No Phone Rural England South West South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 11 0 10 2 0 0 1 0 10 0 0 0 10 0 0 0 0 0 11 0 10 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 18.181818 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 100 100 0 0 0 0 23 11 10 21 2 9.52380943 0 0 0 19 19 100 100 0 2 3 14.5680799 14.5680799 2218 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None None None 100% None 1 to 10 Strongly agree (4) Don't know Strongly agree (4) Strongly disagree (-4) Don't know Slightly agree (2) Slightly agree (2) Don't know Yes Yes No No No Yes No Yes No No No No No No No No Yes No No Yes Yes No No Yes Yes Yes No No Not at all confident (1) Yes Yes No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 28 800 0 0 0 800 0 0 0 0 0 0 0 2300 0 2300 0 0 0 0 800 800 0 0 0 0 0 15 0 0 0 1 0 15 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 800 0 800 0 0 0 16 15 0 15 15 100 0 0 0 0 0 100 0 0 1 2 17.3453598 17.3453598 2220 Yes Yes No No No Yes No No No No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 3 3 Yes Yes No Phone Rural Wales Wales Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4000 0 0 0 4000 0 3 0 3 3 0 0 0 0 0 3 3 100 100 0 0 3 13.2410421 13.2410421 2222 Yes No No No No No No No No No No No No Yes No No No Yes No No Yes No Yes No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No Yes No No No No No Yes Yes No No Yes Yes Yes No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 1 to 10 Have not spent anything Have not spent anything 41 to 50 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 41 to 50 Have not spent anything 41 to 50 Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything Have not spent anything 1 to 10 Have not spent anything 51 to 100 51 to 100 51 to 100 None None None None None None 51 to 100 100% 51 to 100 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban England South East South White British White Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 26 1500 0 0 1500 0 0 0 0 0 0 0 0 5300 0 0 5000 0 0 300 5000 0 5000 0 500 500 0 1 0 0 3 80 1 0 0 0 0 0 0 0 0 0 0 80 0 0 0 0 0 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 0 0 0 0 0 0 0 0 0 1 0 0 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 12300 12000 0 0 300 0 85 0 80 80 0 0 0 0 0 80 80 100 100 0 5 4 18.6235714 18.6235714 2235 Yes No Yes Yes No Yes No No No No Yes No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) About once a week (52) 101 to 200 41 to 50 51 to 100 101 to 200 41 to 50 25% to 49% 25% to 49% 51 to 100 50% to 74% 51 to 100 100% 100% 31 to 40 11 to 20 11 to 20 Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 41 to 50 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 41 to 50 Have not spent anything 101 to 200 41 to 50 51 to 100 101 to 200 41 to 50 25% to 49% 21 to 30 25% to 49% 51 to 100 50% to 74% 51 to 100 100% 51 to 100 100% 11 to 20 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 3 3 No Yes No Phone Urban England South East South White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 8000 5000 1000 2000 0 0 0 900 900 0 0 2000 2000 0 110 0 0 5 3 3 50 0 0 0 0 0 60 0 0 0 0 0 110 0 0 0 0 0 50 0 0 0 0 0 20 0 0 0 3 3 60 0 0 0 0 0 0 60 0 0 0 0 0 40 20 20 0 0 0 0 0 0 0 0 5 3 3 45.4545441 40 54.5454559 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 9000 4000 0 0 5000 0 121 50 60 110 50 45.4545441 42.6229515 60 54.5454559 60 60 100 100 20 11 3 14.5680799 14.5680799 2241 Yes Yes No No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None None Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No No No Yes Yes No No No No No Yes Yes No Yes Yes No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone England South East South White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 26 399 0 0 0 300 297 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1399 0 300 99 1000 0 3 3 0 3 3 100 0 0 0 0 0 100 0 0 0 2 18.6235714 18.6235714 2242 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No Yes No Yes No No No No No Yes No Yes No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) Every 2-3 weeks (30) 51 to 100 11 to 20 1 to 10 21 to 30 11 to 20 50% to 74% 25% to 49% None None 1 to 10 25% to 49% 50% to 74% 501 to 1000 1 to 10 1 to 10 21 to 30 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 11 to 20 11 to 20 31 to 40 11 to 20 25% to 49% 1 to 10 25% to 49% None None 11 to 20 50% to 74% 11 to 20 75% to 99% 1 to 10 21 to 30 Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Don't know Don't know Don't know Slightly agree (2) Slightly agree (2) Yes No No No No No Yes Yes No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England West Midlands Midlands White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 3000 0 0 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55 0 0 0 10 0 20 0 0 0 0 0 10 0 0 0 10 0 30 0 0 0 10 0 15 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 0 10 0 1000 10 10 0 0 0 0 0 25 0 0 0 0 0 50 25 0 46.6666679 73.3333359 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3000 3000 0 0 0 0 65 20 20 40 15 37.5 25 0 0 25 17 80 68 10 25 2 16.2971992 16.2971992 2269 No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No Several times a day (730) No Yes No No Yes Yes No No No No No Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No Yes Yes Yes No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 25% to 49% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 21 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 Most days (365) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) 51 to 100 31 to 40 11 to 20 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 75% to 99% 1 to 10 51 to 100 41 to 50 1 to 10 Have not spent anything 11 to 20 Have not spent anything 21 to 30 1 to 10 1 to 10 1 to 10 1% to 24% 1 to 10 25% to 49% None None 1 to 10 100% 1 to 10 100% 1 to 10 11 to 20 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time Any Yes No Yes No Yes Yes No 5+ 5+ Yes No No Phone Urban England London South Pakistani Minority Ethnic No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No Yes No Yes Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 25 0 0 0 0 0 0 1000 1000 0 1000 1000 0 3000 1000 0 0 1000 0 1000 5800 3900 1900 0 700 700 0 0 4 2 10 2 4 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 1 0 0 0 1 0 0 0 3 0 0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 0 0 2 0 0 0 4 2 0 2 4 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 10 0 0 0 100 100 0 0 0 0 0 0 75 0 0 0 7600 4600 1000 0 2000 0 22 10 0 10 1 10 30.7692299 0 0 9 9 100 100 2 12 5 18.6235714 18.6235714 2270 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Several times a day (730) No No No Yes No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No Yes Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 501 to 1000 501 to 1000 501 to 1000 None None None None None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 501 to 1000 501 to 1000 501 to 1000 None None None None None None None None None None 1 to 10 None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No No No No No Yes No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes No No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No Yes Yes No CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 1000 0 0 0 0 0 1000 0 0 0 1 0 1 13.5682125 13.5682125 2276 Yes Yes No No Yes Yes Yes No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes Yes No No Yes No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 Have not spent anything Have not spent anything About once a week (52) 101 to 200 51 to 100 51 to 100 51 to 100 100% None None None 100% 21 to 30 Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 41 to 50 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 11 to 20 Have not spent anything 41 to 50 Have not spent anything 101 to 200 51 to 100 51 to 100 51 to 100 100% None None None None None 100% None 31 to 40 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Yes No Yes No Yes No No Yes No No No No No No No No No No No No No No No No Yes No No No Slightly confident (3) No No No No No No No No No No No Yes No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England London South White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 25 3000 0 0 1500 1500 0 0 0 0 0 0 0 6500 4500 0 2000 0 0 0 0 0 0 0 3500 3500 0 124 0 0 5 0 8 100 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 0 0 5 0 8 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13000 7000 1500 0 4500 0 137 100 0 100 100 100 0 0 0 0 0 100 0 0 37 2 17.9305305 17.9305305 2279 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No Once a day (365) Yes No No No No No No Yes No No No Yes No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Less often (6) About once a month (12) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% None None None 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) 51 to 100 31 to 40 1 to 10 Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No Yes No No No No No Yes No Yes No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time Any Yes No Yes No Yes Yes Yes 4 4 Yes No No Phone Rural Wales Wales Midlands White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 1000 0 0 1000 0 0 0 0 0 0 0 0 3500 2000 0 1500 0 0 0 1500 0 1500 0 1000 0 1000 2 0 0 2 0 14 0 0 0 0 0 4 0 0 0 0 0 10 0 0 0 0 0 14 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 71.4285736 0 0 100 100 7000 4000 1000 0 2000 0 18 4 10 14 10 71.4285736 0 0 0 4 4 100 100 0 4 4 16.9271107 16.9271107 2288 Yes No No No No No No No No Yes No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 31 to 40 21 to 30 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None 1 to 10 Neither agree nor disagree (0) Don't know Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Don't know No No No No No No No No No No No No No No No No Yes No No No Yes Yes Yes Yes No No Yes No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban England South West South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 30 10 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2000 1000 0 0 1000 0 40 0 30 30 0 0 0 0 0 30 30 100 100 0 10 2 18.6235714 18.6235714 2289 Yes No No No No No No No No No No Yes No Yes No No No No No No Yes No No No No No No Yes No No No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 3 3 Yes Yes No Phone Rural England East of England Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 3600 0 3600 0 0 0 0 3600 3600 0 0 2000 2000 0 0 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 16.9271107 16.9271107 2292 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 4 4 No Yes No Phone Urban England North West North White British White No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 25 1000 0 0 1000 0 0 10000 10000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11000 11000 0 0 0 0 12 0 10 10 0 0 0 0 0 10 0 0 0 0 2 4 11.6929893 11.6929893 2309 Yes No No No No Yes No No No No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) No No No No No No No No No No No No No No No No No Yes No No Very confident (4) No No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes Yes Yes No Yes 5+ 5+ Yes Yes No Phone Urban England North West North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 5 11.6929893 11.6929893 2323 Yes No No No No Yes No No No No No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes Yes Yes No No No Yes No No No No No No Yes No No No No No No No No Yes No Yes Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 41 to 50 41 to 50 2-3 times a week (130) Most days (365) 41 to 50 11 to 20 21 to 30 41 to 50 41 to 50 100% None 1 to 10 1% to 24% 100% 1 to 10 100+ 100+ 100+ About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything 51 to 100 21 to 30 21 to 30 41 to 50 41 to 50 75% to 99% None None 1 to 10 1% to 24% None None None 75% to 99% None 1 to 10 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No No No No No No No No No No Yes Yes No No No Yes No No Yes Yes No No No No No Yes Yes No No No No No Yes No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 32 0 0 0 0 0 0 10000 5000 5000 100000 50000 50000 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 1 46 2 0 0 5 1 20 1 0 0 0 0 25 0 0 0 0 1 45 1 0 0 0 0 45 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 5 0 0 0 0 0 100 0 2.22222233 0 100 100 0 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 112500 57500 55000 0 0 0 54 22 25 47 46 97.8723373 0 2 4.25531912 1 0 97.8723373 0 0 7 3 16.2971992 16.2971992 2325 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No 41 to 50 11 to 20 11 to 20 1 to 10 3 1 to 10 1 to 10 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 100% 1 to 10 100% 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 50% to 74% 1 to 10 51 to 100 31 to 40 1 to 10 1 to 10 11 to 20 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 50% to 74% 1 to 10 75% to 99% 1 to 10 100% 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time Any Yes No No No Yes Yes No 5+ 5+ No Yes No Phone England London South Any other white White No Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 4300 1100 200 2200 200 600 100 100 0 100 100 0 1300 1100 100 100 0 0 0 300 100 200 0 999 999 0 4 1 1 2 1 3 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 0 3 1 1 1 1 2 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 2 1 3 50 100 100 100 100 0 100 0 0 0 0 100 0 0 0 0 50 0 0 0 0 0 100 0 0 0 0 66.6666641 0 0 0 6499 3699 200 200 1100 1300 12 0 2 2 1 50 81.8181839 2 100 1 1 100 100 0 10 5 18.6235714 18.6235714 2326 Yes No No No No Yes No No No No No Yes No Yes No No No No Yes No No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 21 to 30 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 11 to 20 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 101 to 200 11 to 20 101 to 200 101 to 200 None None None None None None None None None None None 11 to 20 Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No Yes Yes No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No Yes No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Rural England North East North White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 2000 0 0 0 0 0 0 0 0 0 0 10 0 0 28 100 0 10 0 0 3 0 0 0 0 0 5 100 0 10 0 0 8 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 138 13 105 118 0 0 0 0 0 118 0 0 0 0 20 2 11.6929893 11.6929893 2328 Yes Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Don't know No No No No No No No Yes No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes No 5+ 5+ Yes No No Phone Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1300 1300 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1300 1300 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 5 16.9271107 16.9271107 2343 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No Yes No No No No No Yes No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 100% None None None None 1 to 10 100% 100% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South East South White British White Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 1000 0 1000 0 0 0 0 0 0 0 2 4 0 0 0 0 0 0 0 0 0 0 1 4 0 0 0 0 1 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 4 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 100 100 0 0 0 100 100 0 0 0 0 0 2000 2000 0 0 0 0 6 0 5 5 0 0 100 0 0 5 5 100 100 0 1 2 18.6235714 18.6235714 2346 Yes Yes No Yes No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Don't know Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rural England North West North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 2400 0 2400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 17.3453598 17.3453598 2352 Yes No No No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes Yes No No Yes Yes No Yes No No No Yes No No No Yes Yes No Yes No No No No No No No No No No No No Yes No Yes Yes No No Yes Yes No Yes No No No Yes No No No Yes Yes No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 101 to 200 51 to 100 1 to 10 101 to 200 101 to 200 100% None None None 100% Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 101 to 200 101 to 200 11 to 20 101 to 200 101 to 200 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None None Strongly disagree (-4) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No Yes No No No No No No No Yes Yes No Yes Yes No No No No No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No No Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes No No Phone Urban Scotland Scotland North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110 0 0 2 2 2 100 0 0 1 1 1 10 0 0 1 1 1 110 0 0 2 2 2 110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 116 103 13 116 110 94.8275833 0 0 0 6 6 100 100 0 0 5 11.5925446 11.5925446 2360 No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No Once a day (365) No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No No No No 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 75% to 99% 1 to 10 100% None 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No Yes No Yes No No Yes No No No No No No No No Yes No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No Yes Yes Yes 5+ 5+ Yes No No Phone Urban England London South White & Asian Minority Ethnic No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 26 705 101 101 101 101 303 101 101 0 101 101 0 404 101 101 101 0 0 101 202 101 101 0 101 101 0 2 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 100 50 100 0 100 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 1212 606 101 101 202 202 7 0 1 1 1 100 85.7142868 1 100 0 0 100 0 0 6 5 14.5680799 14.5680799 2361 Yes Yes No Yes No Yes No No No No No Yes No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes No No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 1 to 10 1 to 10 1 to 10 Have not spent anything 21 to 30 11 to 20 1 to 10 11 to 20 1 to 10 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Don't know Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Yes No Yes No No No No Yes No No No No No No No No Yes Yes No Yes No Yes Yes Yes No No No No No No No No No No No No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England North East North White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 2300 0 0 0 800 1500 0 0 0 0 0 0 2000 1000 0 1000 0 0 0 1000 0 1000 0 1000 1000 0 10 0 2 3 7 3 10 0 2 0 0 0 0 0 0 0 7 0 10 0 2 0 7 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 7 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 100 0 0 0 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5300 3000 800 500 1000 0 25 12 7 19 10 52.6315804 0 0 0 9 9 100 100 0 6 2 11.6929893 11.6929893 2362 Yes No Yes Yes No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes Yes No Yes Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No Yes Yes No No No No No No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 75% to 99% 75% to 99% Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 11 to 20 11 to 20 None None None None None None 11 to 20 75% to 99% 11 to 20 75% to 99% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Don't know Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes Yes No No Yes Yes Yes No No No No No No No No Very confident (4) No No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 3 3 No Yes No Phone Urban England South East South Any other white White Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 10 0 0 0 7 4 0 0 0 0 0 0 10 0 0 0 7 0 10 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 80 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5000 5000 0 0 0 0 21 0 17 17 0 0 0 0 0 17 15 88.2352905 88.2352905 0 4 3 12.5546675 12.5546675 2365 Yes No No No No Yes No No No Yes No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No Yes No Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No 51 to 100 51 to 100 51 to 100 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 31 to 40 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 21 to 30 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 11 to 20 Have not spent anything Have not spent anything 1 to 10 51 to 100 41 to 50 1 to 10 1 to 10 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 31 to 40 Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes No Yes Yes No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 34 9000 6000 2000 1000 0 0 0 0 0 0 0 0 1500 1000 0 500 0 0 0 0 0 0 0 500 500 0 31 0 1 2 10 5 1 0 1 0 0 0 0 0 0 0 10 0 1 0 1 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 10 0 0 0 0 0 0 0 0 0 30 0 0 2 0 5 0 0 0 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 11000 2000 0 0 1000 8000 49 2 10 12 0 0 0 0 0 12 12 100 100 0 37 1 11.4110355 11.4110355 2366 Yes No No No No Yes No No No Yes No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything Have not spent anything Have not spent anything 51 to 100 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 100+ 21 to 30 51 to 100 About once a week (52) 31 to 40 21 to 30 21 to 30 21 to 30 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 100+ 100+ 51 to 100 Have not spent anything Have not spent anything Have not spent anything 41 to 50 21 to 30 21 to 30 21 to 30 100% None None None None None 100% None 11 to 20 Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Yes Yes Yes No No No No Yes No No No No No No No No No No No No No No No No No No Yes No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No No No Yes Yes Yes 5+ 5+ No Yes No Phone Urban England West Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 10000 0 0 10000 0 0 0 0 0 0 0 12500 2500 10000 0 0 0 10 0 40 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 22500 12500 10000 0 0 0 50 30 0 30 30 100 0 0 0 0 0 100 0 0 20 5 11.4110355 11.4110355 2373 Yes Yes Yes No No Yes Yes No No No No No No Yes Yes No No No No No No No Yes No No No No No No Yes No No Yes Yes Yes Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes No No Yes No No 100+ 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 11 to 20 11 to 20 About once a month (12) 2-3 times a week (130) 21 to 30 1 to 10 21 to 30 21 to 30 1 to 10 1% to 24% 100% None None 21 to 30 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 21 to 30 100% None None None 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 11 to 20 1 to 10 11 to 20 11 to 20 51 to 100 51 to 100 1 to 10 51 to 100 51 to 100 41 to 50 50% to 74% 1 to 10 1% to 24% None None 21 to 30 100% 21 to 30 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Yes Yes No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 3 3 No Yes No Phone Urban England London South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 12500 10000 0 0 1000 1500 0 0 0 0 0 0 2100 1500 0 0 0 600 0 0 0 0 0 2000 2000 0 30 0 0 12 25 1 5 0 0 0 0 0 25 0 0 12 25 0 30 0 0 12 25 0 5 0 0 12 25 0 5 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 16.666666 100 0 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 100 0 0 0 100 0 0 0 0 0 15600 2000 1000 1100 1500 10000 68 5 62 67 42 62.6865654 11.6279068 0 0 25 25 100 100 0 1 3 18.6235714 18.6235714 2378 Yes No No No Yes No Yes No No No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No No Yes No Yes No Yes No No No No No No No Yes No Yes No Yes Yes No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No Yes No Yes No No Yes No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 2-3 times a week (130) 1 to 10 100% 1 to 10 1 to 10 21 to 30 21 to 30 Have not spent anything Most days (365) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None 1 to 10 75% to 99% None None 25% to 49% 1 to 10 21 to 30 11 to 20 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 25% to 49% 1 to 10 1 to 10 20 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 1% to 24% 1 to 10 1 to 10 1 to 10 Have not spent anything Less often (6) 1 to 10 None 1 to 10 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 21 to 30 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 75% to 99% None None None 25% to 49% 1 to 10 11 to 20 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No Very confident (4) Yes No No No No No No No No No No Yes No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 4 4 Yes No No Phone Urban England East Midlands Midlands White & Asian Minority Ethnic Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 0 0 0 0 0 0 3000 3000 0 3000 3000 0 2800 400 1200 1200 0 0 0 2400 1200 1200 0 300 300 0 0 2 5 3 10 4 0 0 2 0 0 0 0 0 2 0 0 0 0 0 4 0 0 0 0 0 1 0 0 0 0 2 0 1 1 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 1 0 2 1 3 10 4 0 0 0 0 0 0 100 0 0 0 25 0 75 0 25 0 33.3333321 0 0 0 0 0 10 0 0 0 0 0 0 0 0 9100 8700 0 0 400 0 24 2 2 4 1 25 19.0476189 3 75 3 0 25 0 5 20 4 16.9271107 16.9271107 2382 Yes No No No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) No Yes No No No No No Yes No No Yes No No No No No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 17.1963615 17.1963615 2394 No No No No No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No Several times a day (730) No No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Less often (6) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No No No No Yes No No No No No No No No Yes Yes Yes Yes No No Yes No No No No No Yes Yes No Yes No No Yes No No No No No No No No No No No Slightly confident (3) No Yes No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time Any Yes No Yes No No No Yes 2 2 Yes No No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 1400 1400 0 0 0 0 0 0 0 0 0 1000 400 600 0 0 0 0 0 9 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 8 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 12.5 100 100 2400 400 600 0 1400 0 9 4 4 8 4 50 0 1 12.5 4 4 100 100 0 1 2 11.4110355 11.4110355 2396 Yes No Yes No No Yes No No Yes No No No No Yes No Yes No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) Less often (6) 21 to 30 1 to 10 1 to 10 11 to 20 11 to 20 100% None None None 100% 11 to 20 Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 100% None None None None None None None 1 to 10 Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 11 to 20 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 41 to 50 Have not spent anything Less often (6) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 100+ 1 to 10 Have not spent anything 11 to 20 Have not spent anything 41 to 50 1 to 10 11 to 20 21 to 30 11 to 20 50% to 74% 1 to 10 1% to 24% None None 1 to 10 75% to 99% 1 to 10 75% to 99% None 21 to 30 Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Yes Yes Yes No No No No Yes Yes No No No No Yes Yes No Yes No Yes Yes No No Yes Yes No No No No Yes Yes No Yes Yes No No No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No No Yes 4 4 Yes Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 2500 0 0 2000 500 0 4000 4000 0 0 0 0 3500 1500 0 2000 0 0 0 2000 0 2000 0 5000 5000 0 27 2 2 3 4 11 8 0 1 0 0 0 4 1 1 1 4 1 12 1 2 1 4 1 12 1 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 4 1 0 0 0 0 0 0 0 0 15 1 0 2 0 10 100 0 0 0 100 100 100 0 0 100 0 0 0 100 100 0 100 0 0 0 0 0 0 0 100 100 0 0 0 100 100 17000 15000 500 0 1500 0 49 9 12 21 13 61.9047623 9.75609779 0 0 8 7 95.2380981 87.5 0 28 4 16.6998844 16.6998844 2401 Yes No No No No Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) No Yes No No Yes Yes No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No Yes No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 31 to 40 1 to 10 21 to 30 21 to 30 None None None None None None 21 to 30 75% to 99% 21 to 30 75% to 99% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes No No Yes No No No No No Yes No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban Wales Wales Midlands White British White No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 32 500 0 0 500 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 700 700 0 4 0 0 4 25 3 0 0 0 3 0 0 1 0 0 1 25 0 1 0 0 4 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 25 0 0 0 0 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 3200 1200 0 0 2000 0 36 3 27 30 0 0 0 0 0 30 29 96.6666641 96.6666641 0 6 1 11.4110355 11.4110355 2412 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 Less often (6) About once a month (12) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 100% 25% to 49% None None 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 1% to 24% None None None 100% None 11 to 20 Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes No No Yes Yes 4 4 No Yes No Phone England North East North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 32 2000 0 0 500 0 1500 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 10 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 10 0 0 0 100 33.3333321 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 2500 0 500 0 0 25 5 5 10 10 100 20 0 0 0 0 100 0 0 15 4 17.3453598 17.3453598 2416 Yes No No No No Yes No No No No No Yes No No Yes No No Yes No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No Yes No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 1 to 10 Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England North West North White British White Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 26 300 0 0 0 300 0 1000 1000 0 0 0 0 3000 2000 0 1000 0 0 0 1000 0 1000 0 500 500 0 2 4 0 5 0 1 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 5 0 1 100 0 0 0 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5800 3500 300 0 2000 0 12 4 0 4 4 100 0 0 0 0 0 100 0 0 8 2 11.6929893 11.6929893 2417 Yes Yes Yes No No No No No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything 31 to 40 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Strongly disagree (-4) Don't know Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes No No No No Yes Yes No No No No No No No Yes Yes Yes No No Yes Yes Yes No No No No Yes No Yes Yes No No No No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England West Midlands Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 29 239 0 0 0 200 117 0 0 0 0 0 0 2700 0 2700 0 0 0 0 0 0 0 0 1500 1500 0 4 0 0 0 20 8 4 0 0 0 0 0 0 0 0 0 20 0 4 0 0 0 20 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1739 1500 200 39 0 0 32 4 20 24 4 16.666666 0 0 0 20 20 100 100 0 8 2 16.9271107 16.9271107 2427 Yes No No No No No No No No Yes No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) Yes Yes No Yes No Yes Yes No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Slightly disagree (-2) Don't know Slightly agree (2) Don't know Strongly disagree (-4) Don't know Strongly disagree (-4) Yes Yes Yes No Yes No No Yes No No No No No Yes Yes Yes No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Urban Scotland Scotland North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 1 0 0 0 0 0 5 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 5 6 0 0 0 0 0 6 6 100 100 0 0 2 16.5564308 16.5564308 2434 Yes No No No No No No No No Yes Yes Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None 1 to 10 1% to 24% 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 1 to 10 Have not spent anything 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything 21 to 30 11 to 20 1 to 10 21 to 30 11 to 20 75% to 99% None None 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes Yes Yes No Yes No No No No No No No No Yes Yes No Yes No Yes Yes No No Yes No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes Yes No Yes Yes 5+ 5+ Yes No No Phone Urban England London South White British White Yes No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 0 0 0 0 300 100 0 200 200 200 0 10 0 0 6 7 6 10 0 0 2 6 0 0 0 0 4 0 0 10 0 0 6 6 0 8 0 0 6 6 0 0 0 0 0 0 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 6 80 0 20 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 100 0 0 0 100 0 0 0 0 0 600 200 200 0 200 0 29 18 4 22 20 90.9090881 0 2 9.090909 2 2 100 100 0 7 5 12.5546675 12.5546675 2435 Yes Yes Yes Yes No No No No No No No No No Yes Yes No No Yes No No No No No No No No No No No No Yes No Yes No No Yes Yes No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 5+ 5+ Yes No No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 13.2410421 13.2410421 2436 Yes Yes No No No Yes No No Yes Yes No No No Yes Yes No No No Yes No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes Yes No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 About once a month (12) About once a week (52) 51 to 100 11 to 20 41 to 50 51 to 100 11 to 20 1% to 24% 100% None None 41 to 50 100% 100% Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 201 to 500 201 to 500 201 to 500 None None None None 201 to 500 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything 201 to 500 11 to 20 201 to 500 201 to 500 11 to 20 1% to 24% 11 to 20 75% to 99% None None 201 to 500 100% 201 to 500 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) No No Yes No No No No Yes No No Yes No No No No Yes Yes No Yes Yes Yes Yes Yes No Yes No No No Yes No Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Urban Scotland Scotland North Chinese Minority Ethnic Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 1600 0 0 0 1000 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 65 0 0 3 300 3 15 0 0 0 0 0 50 0 0 3 300 0 65 0 0 3 300 0 15 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 2 50 0 0 3 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 23.0769234 100 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 66.6666641 100 100 0 0 0 100 100 0 0 0 0 0 3200 2000 1000 200 0 0 371 15 353 368 15 4.076087 83.3333359 0 0 353 353 100 100 0 3 1 11.5925446 11.5925446 2446 Yes No Yes Yes No Yes Yes No No No No No No Yes No No No No No No Yes No No No No No Yes No No Yes Yes Yes Yes Yes Yes Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes No No Yes No No No Yes Yes No No No Yes Yes No No No No No Yes No No Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes No No Yes No No No Yes Yes No No No Yes Yes No No No No No Yes No No No Yes Yes Yes No No No Yes No Yes No No No No No Yes No No No No No Yes No Yes No No No No No No No 51 to 100 3 Have not spent anything 3 41 to 50 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) 201 to 500 101 to 200 101 to 200 201 to 500 1 to 10 1% to 24% 50% to 74% 41 to 50 1% to 24% 201 to 500 100% 100% 41 to 50 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Most days (365) 11 to 20 11 to 20 11 to 20 None None None None None None None 31 to 40 Have not spent anything 31 to 40 Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None None 1 to 10 100% 100% 21 to 30 21 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 25% to 49% None None 1 to 10 50% to 74% 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 1 to 10 1 to 10 Have not spent anything Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% 1 to 10 1 to 10 11 to 20 1 to 10 1 to 10 About once a month (12) Don't know 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 51 to 100 1 to 10 11 to 20 20 to 30 501 to 1000 201 to 500 201 to 500 201 to 500 31 to 40 1% to 24% 41 to 50 25% to 49% 41 to 50 1% to 24% 201 to 500 75% to 99% 201 to 500 75% to 99% 1 to 10 51 to 100 Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Yes Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Very confident (4) No No No No No No No No No No No No No No No No No No Yes No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England London South Any other white White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes No No No No Yes No Yes No No Yes Yes No Yes No No No Yes No Yes Yes Yes No No No Yes Yes No Yes No Yes No Yes Yes Yes No No No Yes No Yes Yes No Yes No Yes Yes Yes No No No Yes Yes No Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 29 9900 0 3000 5000 1000 900 0 0 0 4000 0 4000 3000 2000 1000 0 0 0 0 2000 1000 1000 0 2000 1000 1000 450 20 10 10 15 11 200 20 10 10 0 10 200 0 0 0 10 0 400 20 10 10 10 10 10 0 2 8 7 10 40 0 0 2 0 0 50 0 0 0 0 0 5 390 0 8 2 3 0 0 0 0 0 0 0 5 1 50 0 0 0 5 1 2.5 66.6666641 12.5 100 100 0 0 0 0 0 20 0 0 100 100 80 25 0 50 100 100 70 0 0 100 100 100 0 0 0 100 18300 7000 6000 300 2000 3000 516 250 210 460 37 8.04347801 45.1612892 50 10.869565 423 403 95.6521759 95.2718658 6 56 2 14.5680799 14.5680799 2447 Yes Yes Yes No No No Yes Yes No No No No No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No Several times a day (730) Yes No No No Yes Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No 31 to 40 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 Less often (6) 21 to 30 1 to 10 1 to 10 1 to 10 100% None None None 100% 11 to 20 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 51 to 100 Have not spent anything 51 to 100 Have not spent anything Have not spent anything Have not spent anything 11 to 20 None 11 to 20 51 to 100 Have not spent anything 51 to 100 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 100+ 100+ Have not spent anything 21 to 30 None 21 to 30 100+ 100+ 1 to 10 1 to 10 51 to 100 Have not spent anything 51 to 100 1 to 10 1 to 10 1 to 10 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 51 to 100 Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No No No No No No No No Yes No No No No No Yes Yes No Yes No No No Yes No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Urban England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 3100 0 0 2000 500 600 400 400 0 400 400 0 16000 6000 0 10000 0 0 0 6000 0 6000 0 40000 40000 0 26 2 2 20 3 30 6 0 0 0 3 0 0 0 0 0 0 0 6 0 0 0 3 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 20 2 2 20 0 30 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 65500 58800 500 200 6000 0 83 9 0 9 6 66.6666641 0 0 0 3 3 100 100 0 74 3 17.9305305 17.9305305 2448 Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No Several times a day (730) No No No No No No No No Yes No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Don't know Strongly agree (4) Slightly agree (2) Don't know Strongly agree (4) Don't know Don't know Yes Yes No No No No No Yes No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South East South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 6 0 0 0 0 3 0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 9 0 6 6 0 0 0 6 100 6 6 100 100 0 3 2 18.6235714 18.6235714 2454 Yes No No No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes Yes Yes Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No Yes No No No No Yes Yes Yes Yes No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 100+ 100+ 100+ 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 1 to 10 1 to 10 Have not spent anything 100+ 11 to 20 1 to 10 11 to 20 11 to 20 None None 1 to 10 1% to 24% None None 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Yes Yes No No No No No Yes No No No No No Yes Yes Yes Yes No No No Yes No No No No Yes No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England North West North White & Black Caribbean Minority Ethnic Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 33 20300 15000 2000 2000 1000 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 9 3 1 0 3 4 2 0 0 0 0 0 6 3 1 0 3 0 8 3 1 0 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 8 3 1 0 3 0 0 0 0 0 0 0 0 0 1 0 0 0 0 4 0 100 0 100 100 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 22100 4000 1000 100 0 17000 20 2 13 15 0 0 20 0 0 15 15 100 100 0 5 1 17.3453598 17.3453598 2457 Yes No Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No Several times a day (730) Yes Yes No Yes No No No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No Yes No Yes No Yes Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 51 to 100 11 to 20 41 to 50 51 to 100 None None None None 51 to 100 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 51 to 100 11 to 20 51 to 100 51 to 100 1 to 10 1% to 24% None None None None 51 to 100 100% 51 to 100 100% None 1 to 10 Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Yes Yes No No No Yes No No No No No No No Yes Yes No Yes No No Yes Yes No No No Yes No No No Yes Yes No Yes No No Yes No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes Yes Yes Yes No 5+ 5+ Yes No No Phone Urban England East Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 5000 5000 0 0 0 0 500 0 0 0 0 500 0 0 0 0 0 2500 2500 0 70 4 0 1 2 4 20 0 0 0 0 0 50 0 0 1 2 0 70 0 0 1 2 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 70 0 0 0 2 0 0 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 8000 7500 0 500 0 0 81 20 53 73 1 1.36986303 0 0 0 72 72 100 100 0 8 5 13.2410421 13.2410421 2458 Yes Yes Yes Yes No Yes No No No No No No No Yes Yes No No Yes No No No No Yes No No No No No No Yes No Yes Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 About once a month (12) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything 1 to 10 1 to 10 Have not spent anything 21 to 30 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Strongly disagree (-4) Don't know Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Yes No Yes No No No No Yes No No No No No Yes Yes No Yes Yes No No Yes Yes No Yes No Yes No No Yes Yes Yes Yes No No Yes Yes No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes Yes No Phone Urban England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 300 0 0 0 0 300 5000 5000 0 0 0 0 950 950 0 0 0 0 0 0 0 0 0 4000 4000 0 6 1 0 0 4 10 3 0 0 0 0 0 3 0 0 0 4 0 6 0 0 0 4 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 10 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 10050 9000 0 100 950 0 21 3 7 10 6 60 0 0 0 4 4 100 100 0 11 3 18.6235714 18.6235714 2469 Yes Yes No No No Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No Yes No Yes No No No No No Yes No Yes No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 21 to 30 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 1 to 10 Have not spent anything 1 to 10 Have not spent anything 21 to 30 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No Yes No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban Northern Ireland Northern Ireland North White Irish White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 32 1000 0 0 500 500 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 1000 1000 0 0 1500 1500 0 25 0 0 0 1 4 5 0 0 0 0 0 10 0 0 0 0 0 15 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 1 4 33.3333321 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 2000 500 0 1000 0 30 5 10 15 5 33.3333321 0 0 0 10 10 100 100 0 15 2 13.2465572 13.2465572 2471 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Strongly agree (4) Slightly agree (2) Strongly agree (4) Don't know Don't know Don't know Don't know No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 150 150 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 150 150 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 11.4110355 11.4110355 2473 Yes Yes No No No No No No No Yes No No No Yes Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 50% to 74% 50% to 74% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None 1 to 10 50% to 74% 1 to 10 50% to 74% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 1 1 No Yes No Phone Urban Northern Ireland Northern Ireland North White Irish White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 6 4 0 1 0 0 3 0 0 1 0 0 3 4 0 2 0 0 6 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 50 0 0 0 100 100 0 0 0 0 0 500 0 0 0 500 0 12 4 8 12 0 0 0 0 0 12 7 58.3333321 58.3333321 0 0 1 8.92987251 8.92987251 2474 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything About once a month (12) 11 to 20 1 to 10 1 to 10 1 to 10 1% to 24% 25% to 49% 1 to 10 75% to 99% 1 to 10 25% to 49% 50% to 74% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 11 to 20 Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 1 to 10 Have not spent anything Have not spent anything Have not spent anything 31 to 40 1 to 10 1 to 10 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 75% to 99% 1 to 10 25% to 49% 1 to 10 50% to 74% None 21 to 30 Strongly disagree (-4) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 4 4 Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 33 800 0 0 500 300 0 2000 2000 0 0 0 0 1000 0 500 500 0 0 0 0 0 0 0 500 500 0 12 20 0 1 0 2 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 0 8 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 2 20 0 1 0 2 20 25 80 37.5 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3800 3500 300 0 0 0 35 10 0 10 2 20 3.70370364 8 80 8 3 50 37.5 0 25 4 16.2971992 16.2971992 2479 Yes No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No Yes No No No No No No No Several times a day (730) No No No No No Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 11 to 20 1 to 10 1% to 24% None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Don't know Slightly disagree (-2) No No Yes No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No Yes No No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 3 3 Yes No No Phone Rural England South East South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 1500 1000 500 0 0 0 0 0 0 0 0 200 200 0 1 0 0 1 12 1 0 0 0 0 0 0 1 0 0 1 12 0 1 0 0 1 12 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 1200 200 0 0 1000 0 15 0 14 14 1 7.14285707 0 0 0 13 13 100 100 0 1 3 18.6235714 18.6235714 2485 Yes No Yes No No Yes No No No No Yes No No Yes No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Several times a day (730) Yes Yes Yes No No No Yes No No No No No Yes No No Yes No No Yes No No No Yes No Yes No No No No Yes No No No Yes Yes Yes No No No Yes No No No No No Yes No No Yes No No Yes No No No Yes No No No No No No No No No No Yes No Yes Yes Yes No No No Yes No Yes Yes No No No No Yes No Yes Yes Yes Yes No No 51 to 100 3 1 to 10 11 to 20 Have not spent anything 31 to 40 11 to 20 11 to 20 Every 2-3 weeks (30) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 100% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 1 to 10 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 75% to 99% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 100% Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 11 to 20 1 to 10 11 to 20 Have not spent anything 11 to 20 50% to 74% 11 to 20 1 to 10 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 20 to 30 41 to 50 1 to 10 Have not spent anything 20 to 30 31 to 40 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 11 to 20 25% to 49% 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% 1 to 10 11 to 20 Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Slightly agree (2) Strongly agree (4) Don't know Yes Yes No Yes No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No Yes Yes Yes No Yes Yes No Yes No No No No Yes No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 No No Yes Phone England Yorkshire and The Humber North Indian Minority Ethnic Yes No Yes No Yes No Yes Yes Yes No No No Yes Yes No Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 26 7650 650 1500 0 4000 1500 1200 500 700 300 300 0 0 0 0 0 0 0 0 1800 500 1300 0 900 900 0 3 7 1 3 14 5 3 5 0 0 0 0 0 0 0 3 0 2 3 5 0 3 0 2 2 3 0 0 0 2 0 0 1 0 8 3 3 4 0 0 0 2 3 1 2 0 3 0 0 2 2 2 0 0 0 0 0 0 2 1 0 14 3 66.6666641 0 100 100 100 60 0 80 100 100 0 100 0 0 0 0 0 0 100 100 100 0 57.1428566 0 0 0 100 60 100 0 100 10350 3000 4700 500 0 2150 33 8 5 13 7 53.8461533 44.4444427 9 69.2307663 6 6 100 100 2 20 2 17.3453598 17.3453598 2487 Yes Yes Yes Yes Yes Yes Yes No No No No Yes No Yes No No No Yes No No Yes No No No No No No Yes No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes No Yes Yes No No No Yes No No No Yes Yes Yes No Yes Yes Yes Yes No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No Yes No No No No Yes No Yes No No No No No Yes No Yes Yes No No Yes No Yes No Yes No No No No No 31 to 40 31 to 40 31 to 40 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 31 to 40 None 31 to 40 20 to 30 20 to 30 Have not spent anything About once a month (12) Every 2-3 weeks (30) 31 to 40 21 to 30 1 to 10 31 to 40 None None None None None 31 to 40 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything 31 to 40 51 to 100 31 to 40 1 to 10 31 to 40 None None None None None None 31 to 40 100% 31 to 40 100% None 41 to 50 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) No No No Yes No No No Yes Yes No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No Yes No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 3 3 Yes Yes No Phone Urban England South East South White British White Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 30 4000 3500 0 500 0 0 2500 2500 0 0 0 0 1000 0 0 1000 0 0 0 1000 0 1000 0 1000 1000 0 40 36 3 3 2 4 0 30 3 0 0 0 0 4 0 0 2 0 0 34 3 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 3 0 2 0 0 0 0 0 0 0 0 0 40 2 0 3 0 4 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 9500 6000 0 0 0 3500 88 33 6 39 0 0 0 0 0 39 39 100 100 0 49 3 17.9305305 17.9305305 2499 Yes No No No No Yes No No No No No Yes No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Several times a day (730) No No No No Yes No No No No No No Yes Yes No Yes Yes No No Yes No No No No No No No No No Yes No No No No No No No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No Yes No No Yes No No No Yes Yes No 51 to 100 51 to 100 1 to 10 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None None None None Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% None None None 1 to 10 75% to 99% 1 to 10 100% 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 51 to 100 51 to 100 31 to 40 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% 11 to 20 75% to 99% None None 1 to 10 50% to 74% 1 to 10 50% to 74% None 11 to 20 Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No Yes No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No No Yes Phone England South East South Indian Minority Ethnic No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 25 5200 200 5000 0 0 0 0 0 0 5000 5000 0 7000 7000 0 0 0 0 0 0 0 0 0 5000 5000 0 10 0 10 12 0 1 0 0 0 2 0 0 10 0 0 10 0 0 10 0 0 12 0 0 0 0 0 2 0 0 0 0 10 0 0 1 0 0 0 0 0 0 10 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 16.666666 0 0 83.3333359 100 100 0 0 0 0 0 0 100 0 0 0 22200 10000 0 0 7000 5200 33 2 20 22 2 9.090909 84.615387 0 0 20 10 54.5454559 50 0 11 2 18.6235714 18.6235714 2500 Yes Yes Yes No No Yes No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No Yes Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None None None None None None Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Yes Yes Yes Yes Yes No Yes Yes No No No No No Yes Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Urban England South East South White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 8 0 0 0 0 5 5 0 0 0 0 0 3 0 0 0 0 5 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 1000 0 13 10 3 13 0 0 0 0 0 13 0 0 0 0 0 4 17.9305305 17.9305305 2503 Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes No No Yes No Yes No No Yes No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 Less often (6) Most days (365) 101 to 200 1 to 10 51 to 100 101 to 200 1 to 10 1% to 24% 100% None None 51 to 100 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything 101 to 200 1 to 10 51 to 100 101 to 200 1 to 10 1% to 24% 1 to 10 100% None None 101 to 200 100% 101 to 200 100% None 1 to 10 Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes Yes No No No Yes No No No No No Yes Yes No Yes Yes No No No No No Yes No No No No Yes Yes Yes Yes No No No Yes No No No Yes No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 No Yes No Phone Urban Wales Wales Midlands African Minority Ethnic Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 800 0 0 300 200 300 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 105 0 0 0 0 3 4 0 0 0 0 3 100 0 0 0 0 0 104 0 0 0 0 3 4 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3.84615374 100 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 1600 1300 200 100 0 0 108 7 100 107 4 3.73831773 100 0 0 103 103 100 100 0 1 3 16.2971992 16.2971992 2511 Yes No No No No Yes No No No Yes Yes No No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No Once a day (365) Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 1 to 10 Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Slightly confident (3) No No No No No No No No No No No No No No No Yes No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Wales Wales Midlands Any other white White Yes No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 27 200 0 0 0 200 0 0 0 0 0 0 0 900 900 0 0 0 0 0 0 0 0 0 2000 2000 0 3 0 0 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 66.6666641 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3100 2000 200 0 900 0 6 3 0 3 2 66.6666641 0 0 0 1 1 100 100 0 3 1 11.4110355 11.4110355 2526 Yes Yes No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes Yes No No Yes No No No Yes No No Yes Yes Yes No Yes No No No Yes No No Yes Yes No No Yes No No No No No No No Yes No No No No No No Yes No No No Yes No No Yes No No No No No No Yes Yes No No Yes No No No Yes No No No Yes No No No Yes No No No Yes No No No Yes No No No Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 2-3 times a week (130) 1 to 10 50% to 74% 1 to 10 1 to 10 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% 100% 1 to 10 1% to 24% 1 to 10 1% to 24% 11 to 20 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 100+ 2-3 times a week (130) 2-3 times a week (130) 31 to 40 21 to 30 21 to 30 11 to 20 25% to 49% 25% to 49% 1 to 10 25% to 49% 1 to 10 50% to 74% 75% to 99% 11 to 20 11 to 20 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) 100+ 100+ 100+ 1 to 10 51 to 100 Have not spent anything 51 to 100 1 to 10 31 to 40 41 to 50 11 to 20 25% to 49% 11 to 20 25% to 49% 11 to 20 25% to 49% 21 to 30 75% to 99% 21 to 30 75% to 99% 21 to 30 11 to 20 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes Yes No Yes No Yes No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 2 2 No No Yes Phone Urban England East Midlands Midlands White & Black African Minority Ethnic Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 28 0 0 0 0 0 0 0 0 0 5500 5500 0 10000 8000 0 0 1500 500 0 0 0 0 0 27000 12000 15000 2 0 4 15 0 37 0 0 0 10 0 0 2 0 0 5 0 26 2 0 0 15 0 26 0 0 0 2 0 12 0 0 2 2 0 10 0 0 0 3 0 10 1 2 0 0 13 0 8 0 0 0 0 2 3 0 16 0 0 4 0 0 11 0 0 0 100 100 0 0 0 0 0 0 50 0 0 0 13.333333 100 20 6.66666651 100 100 0 0 0 0 0 46.1538467 43.47826 38.4615402 57.1428566 76.9230804 42500 17500 16500 500 8000 0 58 10 33 43 14 32.5581398 48.2758636 13 30.2325573 29 23 86.0465088 79.3103485 21 15 2 16.2971992 16.2971992 2535 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No No Yes No No No No Yes No No Yes No 100+ 51 to 100 41 to 50 3 41 to 50 1 to 10 1 to 10 1 to 10 About once a week (52) Every 2-3 weeks (30) 501 to 1000 31 to 40 21 to 30 51 to 100 1 to 10 1% to 24% 1% to 24% None None None None 1% to 24% 201 to 500 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 21 to 30 21 to 30 Have not spent anything 100+ Have not spent anything Have not spent anything Have not spent anything 21 to 30 None 21 to 30 20 to 30 Have not spent anything 20 to 30 Have not spent anything None 51 to 100 51 to 100 Have not spent anything 11 to 20 None 11 to 20 100+ 100+ 1 to 10 1 to 10 20 to 30 51 to 100 501 to 1000 31 to 40 21 to 30 51 to 100 1 to 10 1% to 24% 1 to 10 1% to 24% None None None None None 1% to 24% None 501 to 1000 Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) No No No No No No No No Yes No Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England South West South White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 34 14900 5000 3000 5000 1000 900 2000 2000 0 2000 2000 0 23000 3000 0 20000 0 0 0 3000 0 3000 0 10000 10000 0 570 2 2 30 0 20 40 0 0 0 0 0 30 0 0 0 0 0 70 0 0 0 0 0 10 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 2 2 30 0 20 14.2857141 0.980392158 0 0 14.2857141 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54300 42000 1000 300 3000 8000 624 40 30 70 10 14.2857141 0.886524796 0 0 60 0 14.2857141 0 0 554 1 14.5680799 14.5680799 2549 Yes Yes No Yes No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No Once a day (365) No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 51 to 100 Have not spent anything 51 to 100 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 41 to 50 Have not spent anything 41 to 50 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything 51 to 100 Have not spent anything 1 to 10 None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes No No Phone England London South Any other Asian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 20000 10000 0 10000 0 0 0 5000 0 5000 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25000 15000 0 0 10000 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 17.9305305 17.9305305 2551 Yes No No No No No Yes No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) No No No Yes No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 41 to 50 21 to 30 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Don't know Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No Yes No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Urban England London South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No Yes No No Yes No Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 6000 3000 1200 1800 0 0 0 0 0 0 0 600 600 0 0 0 1 2 0 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5400 2400 0 0 3000 0 5 1 0 1 0 0 0 0 0 1 1 100 100 0 4 4 17.9305305 17.9305305 2562 Yes No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes Yes No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) No Yes Yes Yes No No No Yes Yes No No No No No No No No No No No Yes No Yes Yes Yes No No No No No No No Yes No No No No No Not at all confident (1) Yes No No No No No No No Yes No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes No No Phone Urban Northern Ireland Northern Ireland North Any other white White No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 2100 600 1200 300 0 0 0 1200 1200 0 0 2000 2000 0 0 0 0 1 11 4 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 1 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2900 2300 0 0 600 0 16 0 10 10 0 0 0 0 0 10 10 100 100 0 6 1 8.92987251 8.92987251 2563 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Don't know Don't know Don't know Slightly agree (2) Don't know Neither agree nor disagree (0) Don't know Don't know No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 1 1 No Yes No Phone England South East South White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 720 720 0 0 0 0 0 0 0 0 0 1845 1845 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2565 1845 0 0 720 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1 12.5546675 12.5546675 2589 Yes No Yes No Yes Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Once a day (365) Yes No Yes Yes No No No No No No No Yes No No No No Yes Yes No No No No Yes No No No Yes No No No No No No Yes No Yes Yes No No No No No No No No No No No No No Yes No No No No Yes No No No Yes No No No No No No No No Yes No No No No No Yes No Yes No No No No No No No Yes No No No No No 31 to 40 3 3 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% 1001+ 1 to 10 1 to 10 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) 51 to 100 51 to 100 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 51 to 100 41 to 50 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 None None None 1 to 10 100% 1 to 10 100% 100% 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1% to 24% 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 11 to 20 Have not spent anything Have not spent anything 20 to 30 21 to 30 11 to 20 11 to 20 1 to 10 25% to 49% 1 to 10 1% to 24% 11 to 20 50% to 74% 11 to 20 100% 11 to 20 100% 11 to 20 11 to 20 Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Yes No Yes Yes Yes No No Yes Yes No No No No Yes No No No No Yes Yes Yes Yes No No No No No No Yes No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Rural England Yorkshire and The Humber North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 4000 3000 0 0 1000 0 6500 6000 500 5500 5000 500 2000 0 0 2000 0 0 0 0 0 0 0 1000 1000 0 10 8 4 6 0 2 10 5 1 0 0 0 0 0 0 0 0 0 10 5 1 0 0 0 0 5 0 0 0 0 0 0 0 1 0 0 10 0 1 0 0 0 0 10 0 1 0 0 0 2000 10 10 0 0 5 0 0 0 3 3 6 0 2 0 0 100 100 100 100 0 0 0 100 0 0 100 100 100 0 16.666666 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19000 14000 2000 0 0 3000 30 16 0 16 5 31.25 5.26315784 11 68.75 11 11 100 100 15 14 3 16.6998844 16.6998844 2595 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No 41 to 50 31 to 40 3 1 to 10 1 to 10 Have not spent anything Have not spent anything 31 to 40 None 31 to 40 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 Have not spent anything Have not spent anything Have not spent anything 31 to 40 31 to 40 None None Slightly agree (2) Don't know Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 31 5000 3000 1000 1000 0 0 0 0 0 0 0 0 2000 0 0 2000 0 0 0 0 0 0 0 0 0 0 35 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 3000 0 0 0 4000 39 0 0 0 0 0 0 0 0 0 0 0 0 0 39 2 16.2971992 16.2971992 2599 Yes Yes Yes Yes No Yes Yes No No No Yes Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No Yes No Yes Yes No Yes Yes Yes No Yes No No No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) Most days (365) 21 to 30 1 to 10 11 to 20 21 to 30 21 to 30 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None 41 to 50 21 to 30 11 to 20 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 1 to 10 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 75% to 99% None None None None None 75% to 99% 11 to 20 1 to 10 1 to 10 About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 31 to 40 20 to 30 Have not spent anything 11 to 20 Have not spent anything 51 to 100 11 to 20 31 to 40 41 to 50 41 to 50 75% to 99% 1 to 10 1% to 24% None None None None None 75% to 99% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes No No Yes Yes Yes No Yes No No No No No Yes Yes Yes No No No No Yes No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands Indian Minority Ethnic Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 32 1000 0 0 0 1000 0 0 0 0 4500 3000 1500 2000 2000 0 0 0 0 0 0 0 0 0 1500 1000 500 25 0 5 2 13 8 5 0 4 2 5 3 20 0 0 0 8 3 25 0 4 2 13 6 25 0 4 2 10 6 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 100 0 0 0 100 0 0 0 0 0 100 100 0 0 100 100 0 0 0 0 100 76.9230804 0 0 0 76.9230804 100 0 0 0 100 9000 4000 3000 0 2000 0 53 19 31 50 47 94 10 0 0 3 0 94 0 0 3 2 16.2971992 16.2971992 2601 Yes No Yes Yes No Yes Yes No No No No No No Yes Yes No No Yes No No Yes No No No No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No Several times a day (730) Yes No Yes No No No No Yes No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No Yes No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 101 to 200 11 to 20 51 to 100 101 to 200 None None 41 to 50 25% to 49% 101 to 200 100% 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) 1 to 10 Have not spent anything 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 2-3 times a week (130) 31 to 40 31 to 40 31 to 40 31 to 40 100% None None None 1 to 10 25% to 49% 100% Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% 11 to 20 Have not spent anything 11 to 20 About once a month (12) 11 to 20 11 to 20 11 to 20 1 to 10 1% to 24% None None None None None 1% to 24% Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) 51 to 100 Have not spent anything 41 to 50 11 to 20 11 to 20 Have not spent anything 201 to 500 41 to 50 101 to 200 201 to 500 41 to 50 1% to 24% None None 41 to 50 1% to 24% 101 to 200 75% to 99% 101 to 200 75% to 99% None None Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes No No No No No Yes No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No Yes Yes No Yes Yes No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes No No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 2000 0 0 0 2000 0 200 0 200 0 0 0 3500 2000 0 0 0 1500 0 0 0 0 0 2000 0 2000 120 2 0 40 50 20 20 2 0 0 0 20 100 0 0 40 50 0 120 2 0 40 50 20 0 2 0 40 0 4 0 0 0 0 0 0 50 0 0 0 0 0 10 120 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41.6666679 100 100 100 0 0 0 100 0 0 0 0 0 100 0 0 25 0 100 0 0 0 100 100 20 0 0 0 20 7700 0 4200 1500 2000 0 232 42 190 232 46 19.8275871 0 50 21.5517235 186 170 93.103447 91.39785 0 0 2 18.6235714 18.6235714 2608 Yes Yes Yes No Yes Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything 31 to 40 Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None None Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England West Midlands Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 3900 0 0 0 0 3900 0 0 0 0 0 0 0 0 0 0 0 5 5 0 0 0 0 0 0 0 0 0 0 5 5 0 0 0 0 5 5 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 3900 0 0 3900 0 0 10 0 10 10 5 50 0 0 0 5 5 100 100 0 0 2 16.2971992 16.2971992 2620 Yes Yes Yes No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No Yes Yes Yes Yes No No No No No Yes No Yes Yes No Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No Yes No Yes Yes No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 51 to 100 21 to 30 21 to 30 51 to 100 None None None None None None None Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 1 to 10 Have not spent anything 1 to 10 Have not spent anything 51 to 100 31 to 40 31 to 40 51 to 100 None None None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) No No No Yes No Yes Yes No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No No Yes No No Yes 3 3 Yes No No Phone Urban Scotland Scotland North White British White Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 599 0 0 599 0 0 0 60 1 1 6 9 0 30 0 0 6 3 0 30 1 1 0 6 0 60 1 1 6 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 66.6666641 66.6666641 0 0 0 0 0 1198 0 599 0 599 0 77 39 38 77 0 0 0 0 0 77 8 10.3896103 10.3896103 0 0 3 16.5564308 16.5564308 2625 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Most days (365) 201 to 500 21 to 30 201 to 500 201 to 500 31 to 40 1% to 24% 25% to 49% 201 to 500 75% to 99% 201 to 500 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 201 to 500 21 to 30 201 to 500 201 to 500 31 to 40 1% to 24% 11 to 20 25% to 49% 201 to 500 75% to 99% 201 to 500 100% 201 to 500 100% 1 to 10 None Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes No No No Yes No No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No Yes Yes No Yes No No Yes No No No No No No No No No No No Yes No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England East of England Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 280 0 0 0 4 0 30 0 0 0 0 0 250 0 0 0 4 0 280 0 0 0 4 0 40 0 0 0 0 0 15 0 0 0 0 0 240 0 0 0 0 0 0 240 0 0 0 4 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 14.2857141 37.5 85.7142868 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 284 30 254 284 40 14.084507 37.5 240 84.5070419 244 244 100 100 2 0 3 16.2971992 16.2971992 2626 Yes Yes No No No Yes No No No Yes Yes Yes No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No Yes No Yes No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No 100+ 100+ 100+ Have not spent anything 3 Have not spent anything Have not spent anything Have not spent anything Most days (365) 101 to 200 51 to 100 51 to 100 None None None None None 51 to 100 100% 100% 21 to 30 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None None None 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None None None None 41 to 50 41 to 50 Have not spent anything 11 to 20 None 11 to 20 100+ 51 to 100 Have not spent anything Have not spent anything 20 to 30 100+ 101 to 200 101 to 200 101 to 200 1 to 10 1% to 24% 1 to 10 1% to 24% None None 51 to 100 75% to 99% 51 to 100 75% to 99% None 41 to 50 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Slightly disagree (-2) Strongly disagree (-4) Slightly agree (2) No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England North West North White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 43000 40000 0 3000 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 5000 5000 0 130 0 0 3 9 20 0 0 0 0 0 0 100 0 0 3 9 0 100 0 0 3 9 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 20 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 51000 8000 0 0 3000 40000 162 0 112 112 3 2.67857146 5.6603775 0 0 109 100 91.9642868 91.7431183 0 50 2 17.3453598 17.3453598 2628 Yes No No No No No No No No Yes No No No Yes No No No No No No Yes No Yes No No No No No No No No Yes Yes No Yes No No No No No No No Once a day (365) Yes No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 21 to 30 11 to 20 11 to 20 11 to 20 100% None None None 100% 11 to 20 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 1 to 10 11 to 20 About once a week (52) 11 to 20 11 to 20 11 to 20 1 to 10 25% to 49% None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 41 to 50 21 to 30 1 to 10 21 to 30 21 to 30 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Strongly disagree (-4) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Yes No Yes No No No No No No Yes No No No No No No Yes Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England South West South White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 1000 2000 29 0 0 0 1 20 14 0 0 0 0 15 0 0 0 0 1 0 14 0 0 0 1 15 14 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 0 0 0 0 0 0 15 0 0 0 0 5 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 46.6666679 0 0 100 100 4000 2000 2000 0 0 0 50 29 1 30 21 70 0 0 0 9 9 100 100 0 20 3 12.5546675 12.5546675 2630 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 1500 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 2 2 2 100 0 0 0 0 0 100 0 0 1 2 11.4110355 11.4110355 2633 Yes No No No No Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Don't know No No Yes No No No No No Yes No No No No No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Urban England London South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 395 0 0 0 0 0 395 0 0 0 0 799 799 0 10 0 0 0 0 1 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1194 799 0 0 395 0 11 0 10 10 0 0 0 0 0 10 10 100 100 0 1 4 18.6235714 18.6235714 2641 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No Yes No No No Yes No No No No No No Yes No No Yes Yes No No No No No No No No No No No No Yes No No No No Yes No No No Yes No No No No No No Yes No No Yes Yes No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No No No No 31 to 40 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None 1 to 10 25% to 49% 1 to 10 100% 100% 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None 100% 1 to 10 50% to 74% None None None 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 50% to 74% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No No No No No No Yes No No No No No No No Yes Yes Yes Yes Yes No No Yes No No No No Yes Yes No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 5+ 5+ Yes Yes No Phone Rural England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 3200 0 0 3200 0 0 0 0 0 0 0 0 1750 750 0 1000 0 0 0 0 0 0 0 3599 3599 0 4 0 3 3 0 3 0 0 2 0 0 1 0 0 1 0 0 1 0 0 3 0 0 2 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 4 0 0 3 0 1 0 0 0 0 0 0 0 0 0 0 33.3333321 0 33.3333321 100 100 0 0 0 0 0 0 0 0 0 0 0 0 100 50 0 0 8549 7799 0 0 750 0 13 3 2 5 1 20 11.1111107 2 40 4 2 60 50 0 8 5 13.2410421 13.2410421 2642 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes Yes No Yes Yes Yes Yes No No No No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) About once a month (12) 11 to 20 11 to 20 1 to 10 11 to 20 11 to 20 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 Have not spent anything 20 to 30 Have not spent anything About once a month (12) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 1 to 10 Have not spent anything Have not spent anything Have not spent anything 31 to 40 11 to 20 11 to 20 21 to 30 11 to 20 50% to 74% None None None None 11 to 20 100% 11 to 20 100% None 11 to 20 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Slightly disagree (-2) Strongly disagree (-4) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Rural England South West South White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 27 800 0 0 0 800 0 0 0 0 0 0 0 1500 0 0 1500 0 0 0 3000 0 3000 0 1500 1500 0 13 0 0 7 12 4 12 0 0 0 0 0 1 0 0 0 12 0 13 0 0 0 12 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 7 0 4 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 6800 6000 800 0 0 0 36 12 13 25 13 52 0 0 0 12 12 100 100 0 11 1 18.6235714 18.6235714 2647 Yes No Yes No No Yes Yes No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything None None None Slightly agree (2) Don't know Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 2100 2100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2100 0 0 0 2100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 18.6235714 18.6235714 2654 Yes Yes No No No Yes No No No No No No Yes Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes Yes No No No Yes Yes No No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No Yes No No No No No Yes No No No No Yes No No No No No Yes Yes No No No No No No Yes Yes No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything Have not spent anything Have not spent anything 11 to 20 51 to 100 None None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No No No No No No No No Yes No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No Yes Yes 5+ 5+ Yes No No Phone Urban England South West South White & Asian Minority Ethnic Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 28 10000 10000 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12000 0 0 0 2000 10000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 17.9305305 17.9305305 2657 Yes Yes No Yes Yes Yes Yes No No No No No No Yes No No No Yes No No Yes No No No No No No Yes No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No No Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No Yes Yes Yes No Yes No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No Yes Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) 31 to 40 11 to 20 11 to 20 31 to 40 21 to 30 50% to 74% None None None None None 50% to 74% Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 11 to 20 Have not spent anything 11 to 20 None 11 to 20 11 to 20 Have not spent anything 11 to 20 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 20 to 30 Have not spent anything Have not spent anything 20 to 30 About once a week (52) 2-3 times a week (130) 31 to 40 11 to 20 11 to 20 31 to 40 21 to 30 75% to 99% None 1 to 10 1% to 24% 1 to 10 100% 100% 11 to 20 Have not spent anything 11 to 20 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 100+ 11 to 20 51 to 100 Have not spent anything 20 to 30 Have not spent anything 51 to 100 41 to 50 31 to 40 51 to 100 51 to 100 75% to 99% None None 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 75% to 99% None 11 to 20 Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Yes No No No No No No Yes No No No No No No No No Yes Yes Yes Yes No No No No No No No No Yes No No No Yes Yes No No No No No No Yes No No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No Yes No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No No Yes No No Yes 3 3 Yes Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 27 1000 0 0 0 1000 0 1500 1500 0 2000 0 2000 1099 0 0 0 1099 0 0 3000 0 0 3000 1200 0 1200 35 15 8 2 35 1 15 0 8 1 20 1 20 0 0 1 15 0 35 0 8 2 35 1 25 0 8 2 29 1 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 71.4285736 0 0 0 71.4285736 0 0 0 0 0 100 0 0 0 100 100 0 0 0 0 100 82.8571396 0 17.1428566 100 100 100 0 0 0 100 12799 1500 8299 0 3000 0 96 45 36 81 65 80.2469101 0 6 7.40740728 16 6 87.6543198 37.5 0 15 3 13.2410421 13.2410421 2658 Yes No No No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No Yes Yes No No No No No No No No No Yes No No No No No No Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No No Yes Yes No No No No No No No No No Yes No No No No No No No No Yes No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 51 to 100 21 to 30 31 to 40 51 to 100 None None None None None None None Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 75% to 99% None None None None 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 51 to 100 31 to 40 41 to 50 51 to 100 1 to 10 1% to 24% 1 to 10 75% to 99% None None None None None 1% to 24% 1 to 10 None Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England Yorkshire and The Humber North Indian Minority Ethnic Yes Yes No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes No No Yes Yes No Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 70 1 1 5 2 0 30 1 1 3 1 0 40 0 0 2 1 0 70 1 1 5 2 0 0 0 0 5 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 80 0 0 0 100 0 0 0 0 0 0 0 0 0 0 1500 0 0 0 1500 0 79 36 43 79 5 6.32911396 80 0 0 74 0 6.32911396 0 1 0 2 16.6998844 16.6998844 2666 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Don't know Neither agree nor disagree (0) Don't know Don't know Don't know Don't know Don't know Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Slightly confident (3) No No No No No No No No No No No No No No No No No Yes No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 4 0 4 4 0 0 0 0 0 4 4 100 100 0 0 3 11.6929893 11.6929893 2670 Yes Yes Yes No No Yes Yes No No No No No No Yes Yes No No Yes No No No No Yes No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 None None Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) No No No No No No No No No No No No No No No No No No Yes No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 5+ 5+ Yes Yes No Phone Urban England Yorkshire and The Humber North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 32 500 0 0 500 0 0 0 0 0 0 0 0 2500 0 2000 0 0 0 500 0 0 0 0 800 800 0 12 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1800 1300 0 0 500 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 17 5 11.6929893 11.6929893 2671 Yes No No Yes No Yes No No No No Yes Yes No Yes No Yes No No No Yes No No No No No No No No No Yes Yes No Yes No Yes Yes No No No No No No Several times a day (730) No No No No Yes No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% None None None Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 1 to 10 None None 1 to 10 25% to 49% None None None None None None None 11 to 20 Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No No No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 5+ 5+ Yes No No Phone Urban England South East South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 32 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8000 8000 0 10 0 0 6 0 6 0 0 0 1 0 0 0 0 0 5 0 0 0 0 0 6 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 6 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 9000 9000 0 0 0 0 22 1 5 6 0 0 31.25 0 0 6 0 0 0 0 16 5 14.5680799 14.5680799 2676 Yes No Yes No No Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No No Yes No Yes No Yes Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Don't know Strongly disagree (-4) Yes No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 Yes No No Phone Rural England South West South White British White No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 12.5546675 12.5546675 2683 Yes Yes Yes Yes No Yes Yes No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No Yes No No No Yes Yes Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No 100+ 100+ 100+ 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 Have not spent anything Have not spent anything 41 to 50 100+ 21 to 30 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) No Yes Yes No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 32 33500 30000 1500 2000 0 0 0 0 0 0 0 0 5000 3000 0 0 0 0 2000 0 0 0 0 2000 2000 0 10 0 0 0 6 5 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 10 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 40500 4000 0 0 5000 31500 21 0 6 6 0 0 0 0 0 6 6 100 100 0 15 2 16.9271107 16.9271107 2696 Yes No No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No Yes Yes No No No No No 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a month (12) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 1 to 10 Have not spent anything Have not spent anything 20 to 30 41 to 50 21 to 30 1 to 10 1 to 10 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No Yes No No Yes No No No No No Yes Yes No Yes No No Yes No No No Yes No Yes No No No No Very confident (4) No No No No No No No No No No No No No Yes Yes No Yes No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No No Yes Phone Rural England South East South Any other mixed background Minority Ethnic Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 34 5000 5000 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 400 400 0 20 0 0 0 0 2 10 0 0 0 0 0 10 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8400 400 0 0 3000 5000 22 10 10 20 0 0 0 0 0 20 20 100 100 0 2 2 12.5546675 12.5546675 2699 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 Less often (6) 31 to 40 31 to 40 31 to 40 1 to 10 25% to 49% None None None 21 to 30 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 1 to 10 11 to 20 Have not spent anything 1 to 10 Have not spent anything 31 to 40 31 to 40 31 to 40 1 to 10 25% to 49% None None None None 21 to 30 100% 21 to 30 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No No Yes No Yes Yes 4 4 Yes No No Phone Urban England London South Any other Asian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes Yes No No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 1000 1000 0 0 0 0 700 700 0 0 0 0 0 0 0 0 0 1500 0 1500 0 1 0 0 0 38 0 0 0 0 0 38 0 0 0 0 0 0 0 0 0 0 0 38 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26.3157902 0 0 100 100 3200 1000 1500 0 700 0 39 38 0 38 10 26.3157902 0 0 0 28 28 100 100 0 1 4 12.5546675 12.5546675 2711 Yes Yes No Yes Yes Yes No No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No Yes No No No No No Yes Yes Yes Yes Yes No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes Yes No No No No No 100+ 100+ 41 to 50 51 to 100 11 to 20 1 to 10 51 to 100 51 to 100 Most days (365) 51 to 100 41 to 50 41 to 50 41 to 50 75% to 99% 25% to 49% 1 to 10 1% to 24% 1 to 10 100% 100% 11 to 20 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 11 to 20 About once a month (12) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 100+ 100+ 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 1% to 24% None None 100% 1 to 10 41 to 50 21 to 30 21 to 30 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% 1% to 24% 1 to 10 1% to 24% 1 to 10 25% to 49% 100% 1 to 10 Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 20 to 30 1 to 10 11 to 20 1 to 10 About once a week (52) About once a week (52) 11 to 20 11 to 20 1 to 10 11 to 20 11 to 20 100% 1% to 24% 1 to 10 1% to 24% 100% 1 to 10 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 41 to 50 20 to 30 20 to 30 100+ 101 to 200 21 to 30 51 to 100 51 to 100 51 to 100 75% to 99% 31 to 40 25% to 49% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 21 to 30 Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Yes Yes Yes Yes Yes Yes No Yes No No No No No No No Yes No No Yes Yes No Yes No No No No No No Yes Yes Yes Yes Yes Yes No Yes No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England South East South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 29 21500 5000 6000 2000 1000 7500 12000 10000 2000 12500 11000 1500 4600 2500 500 1600 0 0 0 2500 500 1500 500 4000 4000 0 62 8 7 13 19 8 0 2 3 6 12 0 50 4 0 5 6 0 50 6 3 11 18 0 45 6 3 11 18 0 23 0 1 3 4 0 5 0 0 1 3 0 3 5 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 4 2 1 8 90 40.3508759 10 100 100 100 0 0 0 100 100 14.2857141 0 0 100 100 23.0769234 9.090909 27.272728 0 100 100 21.0526314 16.666666 0 100 0 0 0 0 0 51600 30100 5000 2500 3000 11000 117 23 65 88 83 94.3181839 27.6785717 9 10.227273 5 5 100 100 0 29 2 17.9305305 17.9305305 2713 No Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 51 to 100 Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 Have not spent anything Have not spent anything 51 to 100 Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None None None None None None 11 to 20 Slightly disagree (-2) Neither agree nor disagree (0) Don't know Don't know Don't know Slightly agree (2) Slightly agree (2) Don't know Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England West Midlands Midlands Indian Minority Ethnic No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 12000 7000 0 5000 0 0 0 0 0 0 0 0 0 0 0 0 0 12 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12000 5000 0 0 7000 0 17 0 5 5 0 0 0 0 0 5 0 0 0 0 12 2 16.9271107 16.9271107 2726 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No No No No No Yes No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 100+ 100+ 100+ Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% None None 100% Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 11 to 20 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 20 to 30 1 to 10 Have not spent anything 11 to 20 100+ 31 to 40 1 to 10 11 to 20 21 to 30 1 to 10 25% to 49% 1 to 10 25% to 49% None None 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 27 25350 25000 0 0 350 0 0 0 0 0 0 0 3600 1500 2100 0 0 0 0 0 0 0 0 2500 2500 0 10 0 0 0 20 5 10 0 0 0 0 0 0 0 0 0 20 0 10 0 0 0 20 0 10 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 100 50 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 29350 2500 350 0 1500 25000 35 10 20 30 10 33.3333321 33.3333321 0 0 20 20 100 100 0 5 2 16.9271107 16.9271107 2729 Yes Yes No No No Yes Yes No No No No No No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Don't know Yes No No No No No No No No Yes No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No Yes No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Rural England North East North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 500 0 0 0 500 0 500 0 300 300 0 0 0 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1300 1300 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 17.3453598 17.3453598 2731 Yes Yes Yes Yes No Yes Yes No No No No No No Yes Yes No No No No No No No Yes No No No No Yes No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) No No Yes No No No No Yes No No No No Yes No Yes No No No No No No No No No No No No No No No No Yes No No No Yes No No No No Yes No No No No Yes No Yes No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 20 to 30 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 51 to 100 51 to 100 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 51 to 100 41 to 50 41 to 50 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 11 to 20 Have not spent anything 11 to 20 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 100+ 31 to 40 Have not spent anything 41 to 50 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None None 1 to 10 1% to 24% None None None 75% to 99% None 1 to 10 Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England London South Chinese Minority Ethnic No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 0 0 0 0 0 0 8100 6000 2100 6000 6000 0 6000 5000 0 1000 0 0 0 1000 0 1000 0 1500 0 1500 0 3 2 1 0 5 0 1 0 0 0 5 0 0 1 0 0 0 0 1 1 0 0 5 0 1 0 0 0 5 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 0 0 0 0 0 0 0 100 0 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 22600 14000 3600 0 5000 0 11 6 1 7 6 85.7142868 0 1 14.2857141 1 0 85.7142868 0 0 4 2 17.9305305 17.9305305 2734 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 41 to 50 41 to 50 41 to 50 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 11 to 20 41 to 50 11 to 20 None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Strongly disagree (-4) Yes Yes No No No Yes No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Part time Any Yes No Yes No No Yes No 2 2 Yes No No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 26 4515 4500 15 0 0 0 5500 5500 0 0 0 0 4000 2000 0 2000 0 0 0 0 0 0 0 1500 1500 0 0 3 0 3 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15515 9000 0 0 2000 4515 11 0 0 0 0 0 0 0 0 0 0 0 0 0 11 2 16.9271107 16.9271107 2739 Yes No Yes No No Yes No No No Yes No No No Yes No Yes No No Yes No No No No No No No No No No No Yes Yes Yes No Yes Yes No No No No No No Several times a day (730) Yes No Yes Yes Yes No Yes No No No No Yes No No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No No No No Yes No No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None 1 to 10 50% to 74% 11 to 20 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 41 to 50 11 to 20 21 to 30 About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 51 to 100 21 to 30 Have not spent anything 21 to 30 Have not spent anything Have not spent anything 31 to 40 Have not spent anything Most days (365) 41 to 50 41 to 50 41 to 50 41 to 50 100% None None None 1 to 10 1% to 24% 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) 51 to 100 20 to 30 Have not spent anything 20 to 30 Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 51 to 100 31 to 40 20 to 30 Have not spent anything 51 to 100 1 to 10 51 to 100 51 to 100 51 to 100 75% to 99% None None 1 to 10 1% to 24% 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes No Yes No Yes Yes No No No No No Yes Yes No No No No No No Yes Yes No Yes No No No Yes Yes No No No No Yes No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 3 3 No Yes No Phone England North West North Any other white White Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 1000 0 0 0 1000 0 2000 1500 500 5000 2000 3000 6030 0 3000 0 0 3030 0 6000 3000 0 3000 3000 3000 0 12 3 5 50 4 4 2 1 2 0 0 0 10 0 1 50 3 0 12 1 3 50 3 0 0 1 3 50 3 0 0 0 0 0 0 0 8 0 0 0 0 0 10 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 1 4 0 0 66.6666641 100 100 100 0 0 0 100 100 0 0 0 100 100 0 0 20 0 100 100 0 0 0 100 0 0 0 0 0 20030 6500 7500 3030 3000 0 78 5 64 69 57 82.608696 0 8 11.594203 12 12 100 100 0 9 3 17.3453598 17.3453598 2747 Yes Yes Yes Yes No Yes No No No Yes Yes Yes No Yes Yes Yes No No No No No No Yes No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes Yes No Yes Yes Yes Yes Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No Yes No No No No Yes No No No No No Yes No No Yes Yes Yes Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 About once a week (52) 31 to 40 31 to 40 31 to 40 31 to 40 100% 100% 21 to 30 75% to 99% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 11 to 20 41 to 50 11 to 20 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 51 to 100 41 to 50 11 to 20 Have not spent anything Less often (6) About once a week (52) 31 to 40 1 to 10 11 to 20 11 to 20 None None None None None 1 to 10 50% to 74% 50% to 74% 11 to 20 41 to 50 31 to 40 11 to 20 About once a month (12) Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 11 to 20 Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 11 to 20 1 to 10 11 to 20 Have not spent anything 101 to 200 1 to 10 51 to 100 51 to 100 41 to 50 50% to 74% 31 to 40 25% to 49% 21 to 30 25% to 49% 1 to 10 50% to 74% 1 to 10 75% to 99% None 31 to 40 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Very confident (4) Yes No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England London South Caribbean Minority Ethnic Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 27 1299 0 0 0 0 1497 0 0 0 0 0 0 7045 1045 4500 1500 0 0 0 6000 4500 1500 0 5000 3500 1500 40 0 0 14 32 17 0 0 0 3 2 4 40 0 0 1 15 1 40 0 0 4 17 5 40 0 0 4 0 5 40 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 10 15 12 100 100 75 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 58.8235283 58.8235283 100 0 0 0 100 9544 6500 1500 499 1045 0 103 9 57 66 49 74.242424 46.5116272 30 45.4545441 17 10 89.3939362 58.8235283 0 37 2 18.6235714 18.6235714 2753 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No Yes No No No No No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything 3 3 Every 2-3 weeks (30) 41 to 50 41 to 50 41 to 50 41 to 50 100% None None None 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 11 to 20 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 Have not spent anything 20 to 30 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 Have not spent anything 1 to 10 11 to 20 100+ 51 to 100 41 to 50 41 to 50 41 to 50 100% None None None None None 100% None 1 to 10 Slightly disagree (-2) Don't know Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) No No Yes No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 4 4 Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 25 38000 35000 0 0 0 3000 0 0 0 0 0 0 4500 2000 0 2500 0 0 0 2500 0 2500 0 0 0 0 50 0 0 6 0 0 50 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43000 5000 0 1000 2000 35000 56 50 0 50 50 100 0 0 0 0 0 100 0 0 6 4 16.9271107 16.9271107 2760 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No No No Yes No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Don't know Strongly disagree (-4) Yes Yes No No No Yes No No Yes No No No No Slightly confident (3) No Yes No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 4 4 No Yes No Phone Urban England West Midlands Midlands White British White Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 3500 3500 0 0 0 0 3000 1500 500 1000 0 0 0 1500 500 1000 0 1000 1000 0 0 2 2 1 1 4 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8000 6500 0 0 1500 0 10 2 0 2 0 0 0 0 0 2 2 100 100 0 8 4 13.2410421 13.2410421 2763 Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Most days (365) 31 to 40 31 to 40 31 to 40 31 to 40 75% to 99% None None None 1 to 10 1% to 24% 1 to 10 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 Have not spent anything Have not spent anything 1 to 10 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 21 to 30 100% None None None 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 1 to 10 1 to 10 11 to 20 Have not spent anything 51 to 100 51 to 100 51 to 100 51 to 100 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Don't know Slightly agree (2) Slightly disagree (-2) Don't know Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 3 3 No Yes No Phone England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 1474 975 0 0 0 499 0 499 0 0 499 399 399 0 0 0 0 40 30 1 0 0 0 0 0 0 0 0 0 40 30 0 0 0 0 40 30 0 0 0 0 35 30 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 87.5 0 0 12.5 100 100 100 0 0 0 100 0 0 0 0 0 2871 399 499 499 1474 0 71 0 70 70 65 92.8571396 0 0 0 5 5 100 100 0 1 3 18.6235714 18.6235714 2772 Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No Several times a day (730) Yes Yes No Yes Yes No No Yes No No No No Yes No No No Yes Yes No No No No No Yes No No No No No No No No No Yes Yes No No Yes No No No No No No No Yes No No No Yes Yes No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None None None None None None Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 31 to 40 1 to 10 41 to 50 None None None None None None 21 to 30 50% to 74% 21 to 30 50% to 74% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No Yes No Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No Yes No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone England London South White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 20 3 0 20 0 0 20 0 0 0 0 0 0 3 0 20 0 0 20 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 43 40 3 43 0 0 0 0 0 43 23 53.4883728 53.4883728 0 0 4 12.5546675 12.5546675 2776 Yes Yes No No No Yes No No No Yes No No No Yes Yes Yes No No Yes No No No No No No No No No No Yes No Yes Yes No No No No No No No No No Several times a day (730) No No No No Yes Yes No No No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% 31 to 40 31 to 40 Have not spent anything Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 None None None 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 101 to 200 101 to 200 101 to 200 None None None None 1 to 10 1% to 24% 101 to 200 100% 101 to 200 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South East South Any other white White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 50 0 0 1 100 13 0 0 0 0 0 0 50 0 0 1 100 5 50 0 0 1 100 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 50 0 0 1 100 5 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 20 100 100 4000 4000 0 0 0 0 164 0 156 156 0 0 0 1 0.641025662 156 156 100 100 0 8 2 17.9305305 17.9305305 2805 Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No Yes No Yes Yes Yes No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes No No No No No No No No No Yes No No No Yes No No Yes No No No Yes Yes No Yes Yes Yes Yes No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No No No Yes Yes Yes No Yes Yes No No Yes No No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) Most days (365) 101 to 200 51 to 100 51 to 100 101 to 200 None None None None 101 to 200 75% to 99% 75% to 99% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 Less often (6) 2-3 times a week (130) 21 to 30 1 to 10 11 to 20 21 to 30 None None None None None 1 to 10 1% to 24% 21 to 30 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None 1 to 10 1% to 24% 21 to 30 25% to 49% 25% to 49% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 201 to 500 51 to 100 201 to 500 201 to 500 None None None None 1 to 10 1% to 24% 201 to 500 50% to 74% 201 to 500 50% to 74% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Yes Yes Yes Yes No No Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes No No No No No Yes Yes Yes No Yes Yes No No Yes Yes Yes No No Yes Yes Yes Yes No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 4 4 Yes No No Phone Urban England London South African Minority Ethnic Yes Yes Yes No No Yes No Yes No Yes No Yes Yes Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 602 0 0 600 0 0 2 0 0 0 0 0 0 0 170 0 1 23 100 2 70 0 0 1 0 2 100 0 1 20 100 0 170 0 1 21 100 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 150 0 0 21 30 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 88.2352905 88.2352905 0 0 0 0 0 0 0 0 0 0 0 0 0 9.52380943 100 100 0 0 2 30 30 0 0 0 100 100 602 600 0 0 2 0 296 73 221 294 0 0 0 2 0.680272102 294 203 69.0476227 69.0476227 0 2 4 17.9305305 17.9305305 2807 Yes Yes No No No Yes No No No Yes No No No Yes Yes No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) No No No No No No No Yes Yes No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 25 0 0 0 0 0 0 1500 1500 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 1500 0 0 1500 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 18.6235714 18.6235714 2810 Yes No Yes No No Yes No Yes No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No No No No Yes No Yes No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 1 to 10 Have not spent anything 20 to 30 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No Yes No No No No No No No No Yes Yes No Yes No No No No Yes Yes No No Not at all confident (1) No No No No No No No No No No No No No No No No Yes No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time Any Yes No No Yes Yes Yes Yes 4 4 Yes No No Phone Urban England East Midlands Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 32 2059 0 0 2000 59 0 700 700 0 0 0 0 4100 2100 0 2000 0 0 0 0 0 0 0 2000 2000 0 4 2 0 5 0 5 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 5 0 5 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8859 6700 59 0 2100 0 16 1 0 1 1 100 0 0 0 0 0 100 0 0 15 4 11.4110355 11.4110355 2811 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 41 to 50 41 to 50 None None None None None None 41 to 50 100% 41 to 50 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England North West North White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 3600 0 3600 0 0 0 0 3600 3600 0 0 0 0 0 50 0 0 0 1 0 0 0 0 0 0 0 50 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 0 50 50 0 0 0 0 0 50 50 100 100 0 1 3 17.3453598 17.3453598 2813 Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes No No No No No No No Yes Yes Yes Yes No No No No No No Yes No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Most days (365) 1 to 10 50% to 74% 11 to 20 1 to 10 1 to 10 1 to 10 11 to 20 1 to 10 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 100% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 75% to 99% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 51 to 100 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 100% 1 to 10 50% to 74% 1 to 10 1% to 24% 1 to 10 50% to 74% 50% to 74% Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 50% to 74% 11 to 20 11 to 20 11 to 20 Have not spent anything 1 to 10 50% to 74% 1 to 10 51 to 100 31 to 40 1 to 10 11 to 20 11 to 20 1 to 10 41 to 50 11 to 20 11 to 20 1 to 10 25% to 49% 21 to 30 50% to 74% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 75% to 99% 1 to 10 31 to 40 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 5+ 5+ Yes Yes No Phone Urban England London South Pakistani Minority Ethnic Yes No Yes No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 33 1500 500 500 500 0 0 1500 1000 500 1000 500 500 6000 2000 2000 0 0 2000 0 10000 10000 0 0 1500 1500 0 10 4 6 5 20 5 0 2 4 5 0 0 0 0 0 0 0 0 0 2 4 5 0 0 0 1 2 1 0 0 6 3 3 1 14 3 0 1 2 3 0 0 1 0 1 2 2 0 0 20 10 10 0 0 0 0 0 10 2 2 0 20 5 0 60 0 0 0 50 100 50 100 100 50 75 50 100 100 20 100 60 20 50 60 0 70 0 0 0 0 60 0 0 0 9500 3500 1000 2000 2000 1000 50 11 0 11 4 36.363636 69.7674408 6 54.5454559 7 5 81.8181839 71.4285736 10 39 5 18.6235714 18.6235714 2828 Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes No No No Yes Yes No No No No Yes Yes No No No No Yes No No No No Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No Yes Yes No No No No Yes No No No No Yes No Yes No No No No No Yes No Yes No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) Every 2-3 weeks (30) 51 to 100 21 to 30 1 to 10 31 to 40 31 to 40 100% 75% to 99% None None 100% 1001+ 1 to 10 1 to 10 11 to 20 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything 51 to 100 21 to 30 11 to 20 41 to 50 31 to 40 75% to 99% 31 to 40 75% to 99% None None 1 to 10 100% 1 to 10 100% 1 to 10 11 to 20 Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes No Yes No No No No No No No Yes No No Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes No No Yes No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No No No No No No No No No No No No No Yes Very confident (4) Yes No No Yes No No No No No No No No Yes Yes No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No No Yes Phone Urban England South East South White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 26 30 0 0 10 20 0 0 0 0 0 0 0 1600 1600 0 0 0 0 0 0 0 0 0 0 0 0 52 0 0 0 10 0 30 0 0 0 0 0 10 0 0 0 10 0 40 0 0 0 10 0 40 0 0 0 0 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 5000 1 1 0 0 0 0 0 12 0 0 0 0 0 100 76.9230804 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1630 10 20 0 1600 0 62 30 20 50 40 80 76.9230804 0 0 10 10 100 100 1 12 2 17.9305305 17.9305305 2835 Yes Yes No No No No No No No No No No No Yes Yes No No Yes Yes No Yes No No No No No No Yes No No Yes Yes No No No No No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes Yes No No No No No Yes Yes No No No No No No Yes Yes No No No No No No 100+ 51 to 100 41 to 50 1 to 10 11 to 20 1 to 10 100+ 100+ Most days (365) Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 11 to 20 None None 100% None None 1 to 10 25% to 49% 25% to 49% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 41 to 50 41 to 50 Have not spent anything 1 to 10 100% 1 to 10 41 to 50 31 to 40 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 41 to 50 100% 41 to 50 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 1 to 10 51 to 100 20 to 30 51 to 100 51 to 100 1 to 10 1 to 10 11 to 20 None None 51 to 100 100% None None 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 51 to 100 Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) No Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes Yes No Phone Urban England London South Pakistani Minority Ethnic Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 26 38001 5000 1000 1001 1000 30000 1000 1000 0 5000 5000 0 5000 2000 1000 1000 0 0 1000 2000 1000 1000 0 500 500 0 20 10 5 50 5 5 10 0 0 0 0 0 5 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 5 10 5 50 5 5 0 0 0 0 0 0 0 5 0 0 0 0 0 5 5 5 0 0 0 0 0 5 10 5 50 5 5 0 100 0 33.3333321 33.3333321 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 29501 9501 1000 10000 3000 6000 95 10 5 15 0 0 100 0 0 15 5 33.3333321 33.3333321 5 80 3 17.9305305 17.9305305 2844 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Urban England London South Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 3 0 0 0 0 0 3 0 0 0 0 0 4 18.6235714 18.6235714 2845 Yes No Yes No No Yes No No No Yes No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No Yes No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No No No No No No No No No No No No No No No No No Yes No No Slightly confident (3) Yes Yes No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban England East of England Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 16.9271107 16.9271107 2854 Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 14.5680799 14.5680799 2859 Yes Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes Yes Yes No Yes No No No No No No Yes Yes Yes Yes No No No No No No No Yes Yes No No No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 100+ 11 to 20 Have not spent anything 11 to 20 41 to 50 1 to 10 3 3 About once a week (52) About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 100% None None 1 to 10 25% to 49% 25% to 49% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 11 to 20 1 to 10 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% None None 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 11 to 20 1 to 10 11 to 20 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 1 to 10 75% to 99% None None 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 4 4 Yes Yes No Phone Urban England London South White & Asian Minority Ethnic Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No Yes Yes Yes No No Yes No Yes No No No Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 30 10010 0 1010 5000 1000 3000 2000 1000 1000 1000 1000 0 2000 2000 0 0 0 0 0 1000 1000 0 0 1000 1000 0 6 2 1 0 1 1 2 0 0 0 0 0 3 1 0 0 0 0 5 1 0 0 0 0 1 1 0 0 0 0 2 1 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 1 1 20 100 0 25 40 100 50 0 0 100 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 14010 8000 2000 1000 2000 1010 11 2 4 6 2 33.3333321 85.7142868 0 0 4 1 50 25 1 5 4 17.9305305 17.9305305 2865 Yes Yes No Yes No Yes No No No Yes Yes No Yes Yes No Yes No Yes No No No No No No No No No No No Yes Yes No Yes Yes No No No No No No No No Once a day (365) No No No Yes No No Yes No Yes No No No Yes No No No No Yes Yes Yes No No No No No No No No No No No Yes No No No No Yes No No Yes No Yes No No No Yes No No No No Yes No Yes No No No No No No No No No No No Yes No Yes No Yes No No Yes No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None 1 to 10 25% to 49% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) No No No Yes No No No No Yes No No No No Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time Any Yes No No No Yes No Yes 4 4 Yes No No Phone Urban England South East South White Irish White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 30 0 0 0 0 0 0 500 500 0 0 0 0 500 0 500 0 0 0 0 500 500 0 0 600 600 0 0 1 4 0 1 1 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 1100 1100 0 0 0 0 7 4 0 4 0 0 33.3333321 0 0 4 4 100 100 0 3 4 17.9305305 17.9305305 2880 Yes No No No No Yes No No Yes No No No No Yes No Yes No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes No Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Slightly disagree (-2) Neither agree nor disagree (0) No Yes Yes No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes Yes Yes No No Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 3 3 Yes No No Phone Urban England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 300 0 0 0 300 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 5 3 0 0 4 6 5 0 0 0 0 0 0 0 0 0 4 0 5 0 0 0 4 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 3 0 0 0 6 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2300 2000 300 0 0 0 18 5 4 9 5 55.5555573 0 0 0 4 4 100 100 0 9 3 14.5680799 14.5680799 2882 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 31 to 40 3 3 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Most days (365) 501 to 1000 41 to 50 201 to 500 501 to 1000 None None 100% None None 201 to 500 75% to 99% 75% to 99% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 20 to 30 20 to 30 501 to 1000 41 to 50 501 to 1000 501 to 1000 None None 1 to 10 50% to 74% None None 501 to 1000 75% to 99% 501 to 1000 75% to 99% None 11 to 20 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Yes Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 32 3500 3000 0 500 0 0 0 0 0 0 0 0 2400 2000 0 0 0 0 400 0 0 0 0 2000 2000 0 560 0 0 0 5 4 50 0 0 0 0 0 500 0 0 0 5 0 550 0 0 0 5 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 5 0 0 0 0 0 0 0 0 0 10 0 0 0 0 4 0 100 0 90.9090881 90.9090881 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 7900 2500 0 0 2400 3000 569 50 505 555 0 0 71.4285736 0 0 555 505 90.9909897 90.9909897 0 14 2 17.9305305 17.9305305 2898 Yes Yes Yes No No No No No Yes Yes No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything 1 to 10 None 1 to 10 51 to 100 21 to 30 21 to 30 Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything 20 to 30 51 to 100 11 to 20 None None Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 33 8000 8000 0 0 0 0 12000 12000 0 12000 12000 0 6500 2500 0 4000 0 0 0 0 0 0 0 0 0 0 0 3 2 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38500 28000 0 0 2500 8000 13 0 0 0 0 0 0 0 0 0 0 0 0 0 13 3 16.6998844 16.6998844 2901 Yes No No No No Yes No No No Yes Yes Yes No Yes No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None None None 1 to 10 25% to 49% 25% to 49% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything 21 to 30 1 to 10 11 to 20 21 to 30 None None None None None None 11 to 20 50% to 74% 11 to 20 50% to 74% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) Yes Yes Yes Yes No No Yes No No No No No No Yes Yes Yes Yes Yes Yes No Yes No No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes Yes Yes No Yes No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands Indian Minority Ethnic Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 15 3 0 10 0 0 0 0 0 0 0 0 15 3 0 10 0 0 15 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 5 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33.3333321 33.3333321 0 0 0 100 100 0 0 0 0 0 4000 0 0 0 4000 0 28 10 18 28 0 0 0 0 0 28 18 64.2857132 64.2857132 0 0 2 16.9271107 16.9271107 2902 Yes No Yes No No Yes Yes No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No No Yes Yes Yes Yes 5+ 5+ Yes No No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 5 16.2971992 16.2971992 2904 Yes No No No No Yes No No No No No No No Yes No No No Yes No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Once a day (365) Yes No No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) Don't know 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 21 to 30 11 to 20 1 to 10 11 to 20 None None None None None None 1 to 10 25% to 49% 1 to 10 25% to 49% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No Yes Yes Yes 4 4 Yes No No Phone Urban England South West South White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 2000 1000 500 500 0 0 0 0 0 0 0 0 0 0 14 0 0 7 0 0 7 0 0 5 0 0 7 0 0 0 0 0 14 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 100 100 0 0 0 0 0 0 0 0 0 0 1500 500 0 0 1000 0 21 12 7 19 0 0 0 0 0 19 5 26.3157902 26.3157902 0 2 4 12.5546675 12.5546675 2905 Yes Yes No Yes No Yes Yes No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No Yes No No No Yes No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 31 to 40 31 to 40 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 Have not spent anything Have not spent anything 31 to 40 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Strongly disagree (-4) No No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Not at all confident (1) Yes No No Yes No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban England London South Any other Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 5900 3600 0 2000 0 0 300 0 0 0 0 2200 2200 0 0 0 1 2 6 2 0 0 1 0 0 0 0 0 0 0 6 0 0 0 1 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 6 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 8100 4200 0 0 3900 0 11 1 6 7 0 0 0 0 0 7 7 100 100 0 4 4 18.6235714 18.6235714 2908 Yes Yes Yes No No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 1001+ 1 to 10 501 to 1000 1001+ None None None None 1001+ 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 1 to 10 25% to 49% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 11 to 20 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 20 to 30 11 to 20 Have not spent anything 1 to 10 Have not spent anything 1001+ 1 to 10 501 to 1000 1001+ 1 to 10 None 1 to 10 1% to 24% None None 1001+ 100% 1001+ 100% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 2500 0 0 2000 0 0 500 0 0 0 0 2500 1000 1500 1001 0 0 3 0 5 1 0 0 0 0 4 1000 0 0 0 0 0 1001 0 0 0 0 4 0 0 0 0 0 4 0 0 0 1 0 0 0 0 0 0 0 0 0 1001 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 33.3333321 0 0 0 0 0 0 0 0 0 100 0 0 0 100 5000 3000 1500 0 500 0 1009 5 1000 1005 4 0.398009956 12.5 0 0 1001 1001 100 100 0 4 2 16.6998844 16.6998844 2923 Yes No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) Yes Yes Yes No Yes Yes Yes No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes Yes Yes No Yes Yes Yes No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) 31 to 40 11 to 20 11 to 20 Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 1% to 24% 100% None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 11 to 20 1 to 10 11 to 20 Have not spent anything 21 to 30 11 to 20 1 to 10 11 to 20 11 to 20 50% to 74% 1 to 10 25% to 49% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Rural Scotland Scotland North White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 1100 0 0 500 0 600 4000 2000 2000 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 7 11 0 2 2 0 1 10 0 1 1 0 5 0 0 1 1 0 6 10 0 2 2 0 6 1 0 2 2 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 100 0 0 0 100 10 100 0 100 100 0 0 0 0 0 100 0 0 0 0 100 100 100 0 0 100 0 0 0 0 0 6700 2500 2000 200 2000 0 22 13 7 20 11 55 30.7692299 0 0 9 9 100 100 0 2 2 16.5564308 16.5564308 2924 Yes Yes No No No Yes No No No No Yes Yes No Yes Yes Yes No No No No No No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes Yes Yes Yes No Yes Yes No No No No Yes Yes Yes No No Yes Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 51 to 100 11 to 20 31 to 40 51 to 100 None None 1 to 10 1% to 24% 51 to 100 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 11 to 20 41 to 50 51 to 100 None None None None 1 to 10 1% to 24% 51 to 100 100% 51 to 100 100% None 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Slightly disagree (-2) Yes Yes Yes Yes No Yes Yes Yes Yes No No No No Yes Yes Yes Yes No No Yes Yes Yes No No Yes Yes No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England London South White & Asian Minority Ethnic Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 550 0 0 550 0 0 0 0 0 0 0 0 0 0 55 2 0 2 6 0 20 0 0 0 0 0 35 2 0 0 6 0 55 2 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 55 2 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 3.63636374 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 550 550 0 0 0 0 65 20 43 63 0 0 0 2 3.17460322 63 63 100 100 0 2 1 17.9305305 17.9305305 2929 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) Yes Yes No No Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No No No No No Yes No Yes Yes No No Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 100+ 100+ 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 101 to 200 51 to 100 51 to 100 101 to 200 None None None None 101 to 200 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 100+ 201 to 500 101 to 200 101 to 200 201 to 500 None None None None None None 201 to 500 100% 201 to 500 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 4 4 No Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 25 20000 10000 10000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200 0 0 10 0 0 100 0 0 5 0 0 100 0 0 5 0 0 200 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 20000 0 0 0 0 20000 210 105 105 210 0 0 0 0 0 210 210 100 100 0 0 4 17.9305305 17.9305305 2932 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No Yes Yes No No No No No No No No No Several times a day (730) No No No No No Yes No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 51 to 100 31 to 40 31 to 40 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 1% to 24% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 1 to 10 1 to 10 Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything 11 to 20 None 11 to 20 41 to 50 Have not spent anything 41 to 50 Have not spent anything Every 2-3 weeks (30) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% 100+ 100+ Have not spent anything 11 to 20 None 11 to 20 100+ 100+ Have not spent anything Have not spent anything 1 to 10 31 to 40 51 to 100 1 to 10 1 to 10 11 to 20 None None 1 to 10 1% to 24% None None 11 to 20 100% 11 to 20 100% None 31 to 40 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Don't know Don't know Slightly disagree (-2) Slightly disagree (-2) Yes Yes Yes Yes No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England East Midlands Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 31 6000 4000 0 2000 0 0 0 0 0 0 0 0 5500 500 0 5000 0 0 0 5000 0 5000 0 12000 12000 0 10 0 0 15 13 15 0 0 0 0 3 0 0 0 0 0 10 0 0 0 0 0 13 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 10 0 0 15 0 15 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 28500 24000 0 0 500 4000 53 3 10 13 0 0 2.5 0 0 13 13 100 100 0 40 1 16.9271107 16.9271107 2938 Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None None Neither agree nor disagree (0) Don't know Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Yes No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 4 4 Yes No No Phone Urban England South East South White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 500 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 500 0 500 0 0 0 2 2 0 2 2 100 0 0 0 0 0 100 0 0 0 4 18.6235714 18.6235714 2939 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No Yes No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes No No Yes No No 100+ 100+ 100+ Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 Less often (6) Less often (6) 31 to 40 1 to 10 21 to 30 31 to 40 1 to 10 1% to 24% 50% to 74% None None 21 to 30 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 41 to 50 31 to 40 11 to 20 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 1 to 10 1 to 10 11 to 20 100+ 51 to 100 1 to 10 41 to 50 41 to 50 1 to 10 1% to 24% 1 to 10 1% to 24% None None 41 to 50 100% 41 to 50 100% None 11 to 20 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No No No No Yes No No No No No No Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Wales Wales Midlands White Irish White Yes Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 32 52400 50000 0 2000 100 300 3000 3000 0 3000 3000 0 4500 2000 1500 1000 0 0 0 0 0 0 0 2000 2000 0 36 5 1 7 10 3 1 0 0 0 0 0 30 1 0 2 10 0 31 1 0 2 10 0 1 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 30 1 0 2 10 0 0 0 0 0 0 0 0 0 5 4 1 5 0 3 3.22580647 50 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 63200 11000 100 100 2000 50000 62 1 43 44 1 2.27272725 15.7894735 0 0 43 43 100 100 0 18 2 13.2410421 13.2410421 2940 No Yes No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No Several times a day (730) Yes No Yes No No No No No No No No No Yes Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes 100+ 51 to 100 41 to 50 31 to 40 1 to 10 11 to 20 3 3 Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) 51 to 100 31 to 40 20 to 30 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 50% to 74% 1 to 10 51 to 100 41 to 50 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything 11 to 20 1 to 10 100% 1 to 10 31 to 40 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 100% 1 to 10 100+ 100+ 41 to 50 1 to 10 20 to 30 51 to 100 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% 1 to 10 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) No Yes Yes No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No Yes No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes No No Phone England London South White British White Yes No Yes Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 15000 5000 4000 1000 2000 3000 6500 4000 2500 6000 6000 0 5700 1000 2000 1200 0 0 1500 4000 2000 2000 0 3000 3000 0 2 5 2 1 1 1 1 0 0 0 0 0 0 3 0 0 0 0 1 3 0 0 0 0 1 2 0 0 0 0 2 2 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 1 2 2 1 1 1 100 100 100 0 100 66.6666641 50 33.3333321 100 100 0 50 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 34200 17200 4500 1000 2500 9000 12 1 3 4 3 75 72.727272 2 50 1 1 100 100 1 8 3 17.9305305 17.9305305 2941 Yes No Yes No No Yes Yes No No Yes No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes Yes Yes No No Yes Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything About once a week (52) 21 to 30 11 to 20 11 to 20 None None None None None 11 to 20 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 51 to 100 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 Have not spent anything 51 to 100 Have not spent anything 31 to 40 21 to 30 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes Yes No No No No No Yes No No No No No No No No No No No No Yes Yes Yes Yes No Yes Yes No No No No No No No No No No Very confident (4) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 27 579 0 0 500 79 0 0 0 0 0 0 0 9000 6000 2000 1000 0 0 0 1000 1000 0 0 4000 4000 0 21 0 0 2 5 6 0 0 0 0 0 0 20 0 0 0 4 0 20 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 4 0 0 0 0 0 0 0 0 0 1 0 0 2 1 6 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 11579 5500 79 0 6000 0 34 0 24 24 0 0 0 0 0 24 24 100 100 0 10 2 17.3453598 17.3453598 2945 Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 16.2971992 16.2971992 2948 Yes Yes Yes No Yes Yes No No No No No No No Yes Yes No No Yes No No No No Yes No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 Have not spent anything 11 to 20 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No No No Yes No No No Yes No No Yes Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time Any Yes No Yes No No Yes Yes 4 4 Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1800 0 1800 0 0 0 1 5 3 0 0 0 0 0 3 0 0 0 1 5 0 0 0 0 1 5 3 0 0 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 100 0 0 0 100 1800 0 1800 0 0 0 9 3 6 9 4 44.4444427 0 0 0 5 5 100 100 0 0 4 13.2410421 13.2410421 2953 Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No Yes No No No No No No No 100+ 100+ 100+ 11 to 20 51 to 100 41 to 50 3 3 Most days (365) Most days (365) 51 to 100 31 to 40 31 to 40 1 to 10 25% to 49% 75% to 99% 11 to 20 25% to 49% 11 to 20 50% to 74% 75% to 99% 21 to 30 11 to 20 11 to 20 31 to 40 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 31 to 40 31 to 40 Have not spent anything 31 to 40 50% to 74% 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 75% to 99% 11 to 20 100+ 100+ 100+ 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 75% to 99% 11 to 20 41 to 50 20 to 30 20 to 30 Have not spent anything 21 to 30 75% to 99% 21 to 30 1 to 10 1 to 10 Have not spent anything 1 to 10 50% to 74% 1 to 10 100+ 100+ 41 to 50 1 to 10 100+ 100+ 101 to 200 31 to 40 31 to 40 1 to 10 25% to 49% 51 to 100 75% to 99% 11 to 20 25% to 49% 11 to 20 50% to 74% 11 to 20 75% to 99% 11 to 20 101 to 200 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time Any Yes No No No Yes Yes No 3 3 Yes No No Phone Urban Scotland Scotland North White Irish White Yes No Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 34 57514 40000 1014 10000 4400 2100 3300 3300 0 1100 1100 0 32800 30000 1600 1200 0 0 0 4400 2200 2200 0 100 100 0 66 33 11 14 22 2 33 0 0 0 0 0 0 0 0 0 0 0 33 0 0 0 0 0 9 0 0 0 0 0 33 22 10 12 17 1 12 0 0 0 0 0 0 17 0 0 0 0 0 22 11 11 0 0 0 0 0 33 33 11 14 22 2 27.272728 78.5714264 36.363636 70.8333359 78.7878799 0 66.6666641 0 0 0 0 90.9090881 0 0 0 0 85.7142868 0 0 0 0 0 77.272728 0 0 0 0 50 0 0 0 94014 17900 4400 700 30000 41014 148 33 0 33 9 27.272728 76.6128998 12 36.363636 24 17 78.7878799 70.8333359 11 115 3 13.4516592 13.4516592 2959 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No No No No Yes No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Slightly agree (2) No No No No No No No No Yes No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 4 4 Yes No No Phone Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 30 0 0 0 0 0 0 5000 5000 0 7000 7000 0 800 0 500 300 0 0 0 0 0 0 0 0 0 0 0 2 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12300 12300 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 4 16.5564308 16.5564308 2961 Yes Yes Yes No Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes No No Yes No No No No No Yes No No No No No Yes No Yes Yes No Yes No No No No No No Several times a day (730) Yes No Yes No Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No Yes Yes No No No No No No No No No Yes Yes Yes No No No No Yes Yes No Yes Yes Yes Yes No No No No Yes Yes No No No Yes No No Yes No Yes No Yes Yes No No Yes Yes No No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 201 to 500 1 to 10 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) None 1 to 10 31 to 40 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 11 to 20 Every 2-3 weeks (30) About once a week (52) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% None 1 to 10 1% to 24% 1 to 10 1% to 24% None None 50% to 74% 1 to 10 Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) 11 to 20 Have not spent anything Have not spent anything 11 to 20 2-3 times a week (130) 2-3 times a week (130) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% 25% to 49% None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 31 to 40 1 to 10 31 to 40 Have not spent anything 31 to 40 11 to 20 11 to 20 31 to 40 21 to 30 75% to 99% 1 to 10 1% to 24% 1 to 10 1% to 24% None None None 75% to 99% 11 to 20 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No No No No No No No Yes Yes No No Yes Yes Yes Yes No No Yes Yes Yes No No No Yes No No No No No Yes No Yes No No Yes No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time Any Yes No No No Yes No Yes 5+ 5+ Yes Yes No Phone Rural England South West South Any other mixed background Minority Ethnic Yes No Yes Yes No No Yes No Yes No No No Yes Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 30 0 0 0 0 0 0 5000 5000 0 0 0 0 3400 0 0 0 1500 400 1500 2000 0 0 2000 0 0 0 2 2 0 15 14 0 2 0 0 5 6 0 0 0 0 10 8 0 2 0 0 15 14 0 2 0 0 10 14 0 0 0 0 0 5 0 0 0 0 3 0 0 1 0 0 0 0 0 0 500 10 10 0 1 5 2 0 0 2 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 66.6666641 0 20 6.66666651 0 66.6666641 100 35.7142868 0 0 100 0 0 0 0 0 12400 5000 3500 400 3500 0 33 13 18 31 26 83.8709641 17.8571434 3 9.67741966 5 0 83.8709641 0 18 2 5 17.9305305 17.9305305 2963 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 1 to 10 1 to 10 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 None None Strongly agree (4) Don't know Don't know Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Don't know Don't know No No No No No No No No No No No No Yes No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 Yes Yes No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 0 0 0 0 0 0 2000 2000 0 0 0 0 4500 1000 1000 2500 0 0 0 0 0 0 0 1000 1000 0 0 2 0 7 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 7 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6500 5500 0 0 1000 0 14 0 0 0 0 0 0 0 0 0 0 0 0 0 14 3 13.5682125 13.5682125 2965 Yes Yes Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 25% to 49% None None None 100% None 1 to 10 Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) No Yes No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rural England South East South White British White No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 2400 1400 500 500 0 0 0 500 500 0 0 0 0 0 1 0 0 2 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1900 500 0 0 1400 0 4 0 1 1 1 100 25 0 0 0 0 100 0 0 3 2 17.9305305 17.9305305 2966 Yes No No No No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 11 to 20 1 to 10 1 to 10 None None None 1 to 10 100% None None None 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 None None None None 1 to 10 100% None None None None None 11 to 20 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England South East South White British White Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 30 500 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 20 0 0 0 0 5 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 5 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 25 10 0 10 0 0 0 10 100 10 0 0 0 0 15 1 17.9305305 17.9305305 2967 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No Yes No No No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes Yes Yes Yes Yes 5+ 5+ Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 13.5682125 13.5682125 2972 Yes Yes Yes Yes No Yes No Yes No No No No No Yes Yes No No Yes No No No No Yes No No No No No No Yes No No Yes No No Yes Yes Yes No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes Yes Yes No Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 11 to 20 Every 2-3 weeks (30) 21 to 30 21 to 30 21 to 30 21 to 30 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 100+ 51 to 100 41 to 50 21 to 30 21 to 30 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 11 to 20 1 to 10 51 to 100 Have not spent anything 41 to 50 31 to 40 1 to 10 31 to 40 21 to 30 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Strongly disagree (-4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Not at all confident (1) No No Yes No No No No No No No No No No No No No No No Yes No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban Scotland Scotland North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 3500 0 0 0 2000 1500 0 0 0 0 0 0 11400 5000 3000 3000 0 0 400 1000 0 1000 0 3000 3000 0 30 0 2 5 3 7 30 0 2 0 0 0 0 0 0 0 3 0 30 0 2 0 3 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 5 0 7 100 0 0 0 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 14900 7000 2000 500 5400 0 47 32 3 35 30 85.7142868 0 0 0 5 5 100 100 0 12 2 16.5564308 16.5564308 2977 Yes Yes Yes Yes Yes Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes No No Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 51 to 100 About once a week (52) 21 to 30 21 to 30 21 to 30 21 to 30 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 11 to 20 11 to 20 Have not spent anything 41 to 50 31 to 40 1 to 10 31 to 40 31 to 40 100% None None None None None 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No Yes Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No Yes No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England London South White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 25 6000 0 0 0 0 6000 4000 4000 0 0 0 0 3000 2000 0 0 1000 0 0 0 0 0 0 2000 2000 0 30 2 0 10 0 3 30 0 0 5 0 0 0 0 0 5 0 0 30 0 0 10 0 0 30 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 3 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 11000 6000 1000 2000 2000 0 45 35 5 40 40 100 0 0 0 0 0 100 0 0 5 2 17.9305305 17.9305305 2978 Yes No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything None None None Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time Any Yes No No No Yes No Yes 5+ 5+ Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 700 700 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 700 0 0 0 700 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 13.5682125 13.5682125 2982 Yes No Yes No No Yes No No No Yes No Yes No Yes No No No No Yes No Yes No No No No No No No No Yes Yes No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 No Yes No Phone Rural England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 500 500 0 0 0 0 3 0 1 1 0 0 0 1 100 1 1 100 100 0 2 3 14.5680799 14.5680799 2983 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 13.4516592 13.4516592 2984 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 17.9305305 17.9305305 2986 Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 Have not spent anything 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 2500 0 1000 1500 0 0 0 15 0 15 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1515 1515 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 13.5682125 13.5682125 2987 Yes No No No No No No No No No No Yes No Yes No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No No Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 31 to 40 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 11 to 20 11 to 20 Most days (365) 21 to 30 11 to 20 11 to 20 1 to 10 50% to 74% 25% to 49% None None 1 to 10 50% to 74% 75% to 99% 1 to 10 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Most days (365) 21 to 30 1 to 10 11 to 20 21 to 30 None None None None 21 to 30 100% 100% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything 41 to 50 21 to 30 11 to 20 41 to 50 1 to 10 1% to 24% 1 to 10 25% to 49% None None 31 to 40 75% to 99% 31 to 40 75% to 99% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Strongly disagree (-4) Slightly disagree (-2) Yes Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 1 1 Yes No No Phone Urban England East of England Midlands White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 3200 0 0 1200 500 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 0 0 0 26 0 20 0 0 0 6 0 0 0 0 0 20 0 20 0 0 0 26 0 10 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 26 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 50 38.4615402 0 50 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2200 1200 500 500 0 0 49 26 20 46 10 21.73913 38.4615402 0 0 36 31 89.1304321 86.1111145 0 3 1 16.2971992 16.2971992 2988 Yes Yes No No No No No No No No No No No Yes Yes No No No No No Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 1 to 10 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) No Yes No Yes No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 3 3 No Yes No Phone Urban England South West South White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 26 0 0 0 0 0 0 1000 1000 0 0 0 0 2500 2500 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3500 1000 0 0 2500 0 2 0 1 1 0 0 0 0 0 1 1 100 100 0 1 3 17.9305305 17.9305305 2989 Yes Yes Yes Yes No Yes No No Yes No No No No Yes Yes No No Yes No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No Yes Yes No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything Have not spent anything 11 to 20 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything 11 to 20 11 to 20 11 to 20 Have not spent anything 31 to 40 11 to 20 11 to 20 31 to 40 None None None None None None 31 to 40 100% 31 to 40 100% None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes No No No Yes No Yes No No No No No Yes Yes Yes Yes No No Yes No No No No No Yes No No No No No Very confident (4) No No No No No No No No No No No No No No Yes No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes Yes 4 4 Yes Yes No Phone Urban England London South Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 1797 0 0 0 0 1797 0 1797 0 0 1797 0 0 0 0 0 5 6 20 0 0 0 5 6 0 0 0 0 0 0 20 0 0 0 5 6 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 6 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 5391 0 1797 1797 1797 0 31 11 20 31 0 0 0 0 0 31 31 100 100 0 0 4 17.9305305 17.9305305 2990 Yes No Yes Yes Yes Yes No No No No No No No Yes No No No No No No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes Yes Yes No No No No No Yes Yes Yes No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) About once a week (52) 31 to 40 1 to 10 21 to 30 31 to 40 None None None None 21 to 30 50% to 74% 50% to 74% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 100+ 31 to 40 About once a week (52) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 25% to 49% None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% 51 to 100 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% None None 1 to 10 50% to 74% 1 to 10 50% to 74% 75% to 99% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 51 to 100 Have not spent anything 20 to 30 Have not spent anything 51 to 100 11 to 20 41 to 50 51 to 100 11 to 20 1% to 24% 1 to 10 25% to 49% None None 31 to 40 50% to 74% 31 to 40 50% to 74% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Slightly agree (2) Yes Yes No Yes No Yes Yes No No No No No No Yes Yes No No No No Yes No No No No No No No No Yes Yes No No Yes Yes No Yes No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No Yes No No No No No Not particularly confident (2) No No Yes No No No No No No No No No Yes No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ No Yes No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 33 1000 0 0 0 1000 0 16000 12000 4000 0 0 0 5500 1500 2000 0 2000 0 0 1000 0 0 1000 0 0 0 40 10 6 9 8 0 10 3 2 5 0 0 30 4 4 4 8 0 40 7 6 9 8 0 0 7 0 6 4 0 0 3 0 3 2 0 0 0 0 0 0 0 5 21 0 4 2 4 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 52.5 52.5 100 30 0 0 100 0 0 0 66.6666641 66.6666641 66.6666641 50 0 55.5555573 66.6666641 88.8888855 50 50 0 100 100 0 0 0 0 0 22500 12000 8000 0 2500 0 73 20 50 70 17 24.2857151 40 0 0 53 31 68.5714264 58.4905663 0 3 5 16.6998844 16.6998844 2993 Yes No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No Once a day (365) Yes No Yes No Yes Yes Yes No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No Yes No No No No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 1 to 10 1 to 10 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 20 to 30 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) No No No No No No No No Yes No No No No No No Yes No No Yes No No No No No No No No No Yes Yes Yes Yes Yes No Yes Yes No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone England East Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 3895 895 0 3000 0 0 0 0 0 0 0 0 0 0 3 5 0 1 0 0 0 2 0 0 0 0 3 3 0 0 0 0 3 5 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 100 100 40 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3895 3000 0 0 895 0 9 2 6 8 2 25 0 0 0 6 6 100 100 0 1 2 13.2410421 13.2410421 2994 Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes Yes No No Yes No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No Yes No Yes Yes No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% None None None None 11 to 20 100% 11 to 20 100% None None Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Yes No Yes Yes No Yes No No No No No No No Yes Yes No No No No No Yes Yes No No No No No No Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England East of England Midlands Indian Minority Ethnic Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99 0 99 20 0 0 0 0 3 10 0 0 0 0 0 10 0 0 0 0 3 20 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 99 0 99 0 0 0 23 10 13 23 3 13.043478 0 0 0 20 20 100 100 0 0 3 16.2971992 16.2971992 3002 Yes No No No No No No No Yes No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No Yes No No No Yes No No No Yes No No No Yes No No No 100+ 41 to 50 3 11 to 20 11 to 20 41 to 50 100+ 100+ Most days (365) Most days (365) Most days (365) 101 to 200 1 to 10 51 to 100 101 to 200 None None None None None 101 to 200 100% 100% 101 to 200 41 to 50 41 to 50 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything 11 to 20 None 11 to 20 100+ 100+ 31 to 40 31 to 40 21 to 30 Have not spent anything Have not spent anything 21 to 30 1 to 10 None 1 to 10 100+ 100+ 100+ Have not spent anything 1 to 10 75% to 99% 1 to 10 100+ 100+ Have not spent anything 1 to 10 50% to 74% 1 to 10 100+ 100+ 41 to 50 100+ 51 to 100 41 to 50 101 to 200 1 to 10 51 to 100 101 to 200 None None 1 to 10 1% to 24% None None 101 to 200 100% 101 to 200 100% 41 to 50 31 to 40 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 3 3 Yes No No Phone Urban Scotland Scotland North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 25 71000 2900 1600 1800 4700 60000 3800 3800 0 20000 20000 0 13820 3920 3900 3000 0 0 3000 39800 19900 19900 0 40000 40000 0 107 2 20 3 4 4 4 0 0 0 0 0 100 0 0 0 0 0 104 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 104 0 0 0 0 0 199 48 48 0 0 0 0 0 3 2 20 3 4 4 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 0 0 0 0 50 0 0 0 124620 88500 4700 20000 6920 4500 140 4 100 104 0 0 13.8888893 0 0 104 104 100 100 48 36 3 13.4516592 13.4516592 3005 No No Yes No No No No No No Yes No No No Yes No No No No No Yes No Yes No No No No No Yes No Yes No No No No No No No No No No No No Once a day (365) No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No Yes No No Yes No No No No Yes No Yes No No No No No 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 21 to 30 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 100% 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 75% to 99% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 41 to 50 Have not spent anything Have not spent anything 11 to 20 1 to 10 11 to 20 11 to 20 75% to 99% Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No No Yes No Yes No 4 4 Yes No No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 34 606 202 202 202 0 0 607 607 0 1001 1001 0 2416 604 604 604 0 0 604 1307 703 604 0 1004 1004 0 1 2 2 2 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 4 2 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 75 0 0 0 0 100 0 0 0 5634 4022 0 0 1208 404 13 0 0 0 0 0 92.3076935 0 0 0 0 0 0 0 13 4 14.5680799 14.5680799 3009 Yes Yes No Yes No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes Yes No Yes No No No Yes Yes No No Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No Yes No No No Yes Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No 31 to 40 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 11 to 20 11 to 20 2-3 times a week (130) 51 to 100 41 to 50 41 to 50 21 to 30 25% to 49% 25% to 49% 11 to 20 25% to 49% 11 to 20 25% to 49% 50% to 74% 21 to 30 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 51 to 100 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything 2-3 times a week (130) Most days (365) About once a week (52) 41 to 50 11 to 20 11 to 20 31 to 40 1 to 10 1% to 24% 50% to 74% 1 to 10 1% to 24% 1 to 10 1% to 24% 11 to 20 25% to 49% 50% to 74% 11 to 20 11 to 20 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 41 to 50 11 to 20 20 to 30 1 to 10 Most days (365) Most days (365) 51 to 100 21 to 30 31 to 40 51 to 100 1 to 10 1% to 24% 50% to 74% 11 to 20 1% to 24% 31 to 40 50% to 74% 50% to 74% 11 to 20 31 to 40 31 to 40 Have not spent anything 1 to 10 25% to 49% 1 to 10 100+ 100+ 11 to 20 1 to 10 51 to 100 Have not spent anything 201 to 500 41 to 50 51 to 100 101 to 200 31 to 40 25% to 49% 41 to 50 25% to 49% 31 to 40 1% to 24% 51 to 100 50% to 74% 51 to 100 50% to 74% 11 to 20 51 to 100 Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No Yes No No No No No No No No No No Slightly confident (3) Yes No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Urban England London South Bangladeshi Minority Ethnic Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 3500 0 0 1500 500 1500 6000 6000 0 0 0 0 10100 6000 1200 2000 500 400 0 4200 1200 2500 500 3050 3050 0 75 4 0 44 75 3 0 0 0 20 25 0 50 0 0 12 35 0 50 0 0 32 60 0 24 0 0 6 5 0 24 0 0 9 12 1 14 0 0 6 12 0 6 12 0 0 12 35 0 0 0 0 0 0 12 0 0 25 4 0 12 15 3 48 48.9795914 28 46.1538467 72 0 0 0 0 0 0 0 0 0 0 18.75 50 18.75 18.75 46.1538467 56.25 8.33333302 60 20 63.636364 66.6666641 0 33.3333321 0 0 0 23950 15050 1500 900 6500 0 201 45 97 142 35 24.6478882 48.9361687 32 22.5352116 107 59 66.1971817 55.1401863 12 59 4 17.9305305 17.9305305 3010 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Strongly disagree (-4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 26 300 300 0 0 0 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 0 0 0 0 300 300 0 0 0 0 2 3 2 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1600 1300 0 0 0 300 7 0 3 3 0 0 0 0 0 3 3 100 100 0 4 2 17.9305305 17.9305305 3012 No Yes No No No Yes No Yes No Yes No Yes No Yes No No No Yes No No No Yes No No No No No No No Yes No No No No No No No No No No No No Once a day (365) Yes No No Yes No No Yes No No No No Yes No Yes No No Yes No Yes No No No Yes No No Yes No No Yes No No No No Yes No No Yes No No No No No No No Yes No Yes No No Yes No No No No No Yes No No Yes No No Yes No No No No Yes No Yes No Yes No No No Yes No No No Yes No No No Yes No No No Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 2-3 times a week (130) 21 to 30 11 to 20 11 to 20 21 to 30 None None None None None None None 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 11 to 20 31 to 40 41 to 50 None None None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England London South Pakistani Minority Ethnic Yes Yes Yes No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No Yes No Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 5 1 0 15 0 12 0 1 0 0 0 12 5 0 0 15 0 24 5 1 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 9 6 6 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 13 32 45 0 0 0 0 0 45 1 2.22222233 2.22222233 7 0 2 17.9305305 17.9305305 3015 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No No No Yes No No No No No No No Several times a day (730) No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 41 to 50 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 1 to 10 Have not spent anything Have not spent anything 41 to 50 51 to 100 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 32 6000 6000 0 0 0 0 0 0 0 0 0 0 6000 4500 1500 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11500 1000 0 0 4500 6000 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 17.9305305 17.9305305 3016 Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) No No No No Yes Yes No No No No No Yes Yes No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No Yes No No Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None None 1 to 10 50% to 74% 1 to 10 50% to 74% None None Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes Yes No No Yes 5+ 5+ Yes No No Phone Urban England East of England Midlands Pakistani Minority Ethnic No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 1 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 100 0 0 0 0 0 2500 0 0 0 2500 0 3 0 3 3 1 33.3333321 0 0 0 2 1 66.6666641 50 0 0 5 16.2971992 16.2971992 3017 Yes No Yes No No Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything Have not spent anything Have not spent anything 20 to 30 51 to 100 None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban Northern Ireland Northern Ireland North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 30 6000 6000 0 0 0 0 0 0 0 0 0 0 2600 2600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8600 0 0 0 2600 6000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.7536097 12.7536097 3018 Yes No Yes No No Yes No No No Yes No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) 51 to 100 31 to 40 31 to 40 Less often (6) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 41 to 50 Have not spent anything 1 to 10 Have not spent anything 21 to 30 21 to 30 1 to 10 21 to 30 11 to 20 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes Yes No Yes No Yes No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No Yes Yes Yes No No No Yes No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes No No Phone Urban Northern Ireland Northern Ireland North White British White Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 1000 0 0 0 1000 0 8000 4000 4000 0 0 0 500 500 0 0 0 0 0 0 0 0 0 1299 1299 0 20 5 1 0 0 1 20 1 1 0 0 0 0 3 0 0 0 0 20 4 1 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 100 0 0 0 100 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10799 5299 5000 0 500 0 27 22 3 25 20 80 0 0 0 5 5 100 100 0 2 1 10.3619699 10.3619699 3019 Yes Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No Yes No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 13.2465572 13.2465572 3021 Yes Yes No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No 2-4 days a week (156) No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 Have not spent anything 11 to 20 Have not spent anything 11 to 20 Have not spent anything 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything 11 to 20 Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 2 3 Yes No No Phone Being bought on mortgage Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 5300 0 1500 0 1800 0 2000 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 100 0 0 0 0 0 0 0 0 0 0 3800 0 1800 0 2000 0 2 0 1 1 0 0 0 1 100 1 1 100 100 0 1 3 20.9436417 20.9436417 3055 Yes No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No No Yes No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) None 201 to 500 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Not working In Education Any Yes No Yes No No No Yes 1 2 Yes No No Phone Rented from local authority Rural Scotland Scotland North Any other white White No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 2 13.0367107 13.0367107 3067 Yes Yes No No No Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) No No No Yes Yes Yes No Yes Yes Yes Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No Yes No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 2 4 Yes No No Phone Being bought on mortgage Urban England West Midlands Midlands Any other Black Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 18.3274593 18.3274593 3076 Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Slightly disagree (-2) Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Rented from local authority Urban England East of England Midlands African Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAPI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.8325901 12.8325901 3112 Yes No No No No No No No No No Yes No No Yes No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No Yes No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Rented from private landlord Urban England London South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 16.3829288 16.3829288 3117 No No No No No No No No No Yes No Yes No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) No No No Yes No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No No Yes Yes Yes Yes 1 5+ No Yes No No phone Rented from local authority Urban England West Midlands Midlands White Irish White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 5 12.8325901 12.8325901 3127 Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes No No No Yes No Yes No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) No No No Yes No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes Yes Yes Yes 2 5+ No Yes No Phone Being bought on mortgage Urban England East of England Midlands Any other Asian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 5 19.0358429 19.0358429 3155 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 1 4 No Yes No No phone Rented from local authority Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 25 0 0 0 0 0 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 4 11.6843576 11.6843576 3171 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 1 to 10 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No No phone Rented from local authority Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 28 0 0 0 0 0 0 5000 5000 0 0 0 0 3500 1000 2500 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6000 5000 0 0 1000 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 11.5839863 11.5839863 3183 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) No Yes No No No No No Yes Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Rented from private landlord Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 15.1274281 15.1274281 3187 No No No No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No Yes No Yes No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 1 to 10 None 11 to 20 Have not spent anything 11 to 20 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 Have not spent anything Have not spent anything 41 to 50 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None 1 to 10 100% None 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Yes Yes No No Yes No No No No Yes Yes Yes No No No No No No No No Yes Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Being bought on mortgage Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAPI Adults 25 500 0 500 0 0 0 0 0 0 1500 1500 0 4500 0 0 0 0 0 4500 1500 0 1500 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 0 100 0 0 0 0 0 8000 3000 0 0 4500 500 3 0 1 1 1 100 0 1 100 0 0 100 0 0 2 2 15.1274281 15.1274281 3194 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No No phone Rented from local authority Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 13.4417276 13.4417276 3200 No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes Yes 3 5+ Yes No No Phone Being bought on mortgage Urban England Yorkshire and The Humber North Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 13.2607689 13.2607689 3276 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No Yes Yes 2 5+ No Yes No No phone Being bought on mortgage Urban England Yorkshire and The Humber North Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 13.5581951 13.5581951 3284 Yes No No No No Yes No No No No No No No Yes No No No No No No No No Yes No No No No No No Yes No No Yes No No No No No No No No No 2-4 days a week (156) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None None None None None None Strongly agree (4) Don't know Strongly agree (4) Strongly agree (4) Slightly agree (2) Don't know Slightly agree (2) Don't know No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No No No Yes Yes Yes 2 5+ No Yes No Phone Rented from local authority Urban England Yorkshire and The Humber North White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 5 0 0 0 0 0 8 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 5 8 13 0 0 0 0 0 13 0 0 0 0 0 6 13.1496687 13.1496687 3293 Yes No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything 11 to 20 None None Don't know Don't know Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Don't know No No No No No No No No No No No No No No No No No Yes No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes Yes Yes Yes Yes 2 5+ Yes No No Phone Rented from private landlord Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 0 0 0 3000 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 5 15.2585011 15.2585011 3334 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 1 3 Yes No No Phone Rented from private landlord Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11.6843576 11.6843576 3345 No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No 2-4 days a week (156) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No No No No Yes No Yes No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 41 to 50 11 to 20 21 to 30 41 to 50 1 to 10 1% to 24% 100% None None 31 to 40 100% 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 51 to 100 11 to 20 21 to 30 41 to 50 1 to 10 1% to 24% 1 to 10 50% to 74% None None 31 to 40 100% 31 to 40 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Don't know Yes Yes No No No No No Yes No No No No No Yes Yes No No No No No No No No No Yes Yes No No Yes Yes No Yes Yes Yes No Yes No No No No Yes No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Rented from private landlord Urban England North East North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAPI Adults 28 1200 0 0 600 600 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 0 0 0 46 0 0 8 0 0 15 0 0 0 0 0 30 0 0 0 0 0 45 0 0 0 0 0 8 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0 37 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 0 0 17.7777786 100 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1200 600 600 0 0 0 54 15 30 45 8 17.7777786 52.9411774 0 0 37 37 100 100 0 9 2 15.2585011 15.2585011 3348 No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 41 to 50 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 41 to 50 Have not spent anything 11 to 20 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) No No No No No No No No No No No Yes No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 1 1 No No Yes No phone Rented from local authority Urban Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 27 1100 0 0 1100 0 0 0 0 0 0 0 0 7000 5000 2000 0 0 0 0 0 0 0 0 1000 1000 0 1 0 0 10 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7100 2100 0 0 5000 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 15 1 10.0423298 10.0423298 3367 No No No No No Yes No No No No No Yes No No No Yes No No No No No No Yes No No No No No No No Yes No Yes No No No No No No No No No 5-6 days a week (286) Yes No No No Yes Yes Yes No No No No Yes No No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No Yes No Yes Yes Yes No 51 to 100 Have not spent anything Have not spent anything Have not spent anything 41 to 50 3 Have not spent anything Have not spent anything About once a week (52) About once a week (52) 101 to 200 51 to 100 51 to 100 101 to 200 101 to 200 100% None None None 100% 41 to 50 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 51 to 100 51 to 100 11 to 20 21 to 30 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None None Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 20 to 30 Have not spent anything 51 to 100 Have not spent anything 101 to 200 51 to 100 51 to 100 101 to 200 101 to 200 75% to 99% None None 1 to 10 1% to 24% None None None 75% to 99% None 51 to 100 Slightly disagree (-2) Strongly disagree (-4) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Slightly agree (2) Neither agree nor disagree (0) Yes Yes No No No No No Yes No No No No No Yes Yes No No No No Yes No No No No Yes No No No Yes Yes No No No No No No No No No No Yes No No No No No Not particularly confident (2) No Yes No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No No phone Being bought on mortgage Urban Northern Ireland Northern Ireland North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAPI Adults 26 8000 0 0 5000 3000 0 0 0 0 0 0 0 9000 2000 3000 0 0 0 4000 0 0 0 0 2000 2000 0 170 0 1 7 1 6 60 0 0 0 0 0 60 0 1 1 1 0 120 0 1 1 1 0 120 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 6 0 6 100 0 0 0 100 0 0 0 0 0 100 0 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 7000 3000 0 6000 0 185 60 63 123 121 98.3739853 0 1 0.81300813 2 0 98.3739853 0 0 62 2 14.3424187 14.3424187 3372 No No No No No Yes No No No No No Yes No Yes No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No 2-4 days a week (156) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 41 to 50 None 41 to 50 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 51 to 100 None None Strongly disagree (-4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly disagree (-4) No No No No No No No No No No No Yes No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 No Yes No No phone Being bought on mortgage Urban England South East South White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAPI Adults 31 2000 0 0 2000 0 0 0 0 0 0 0 0 2600 0 0 0 0 0 2600 0 0 0 0 0 0 0 50 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4600 2000 0 0 2600 0 51 0 0 0 0 0 0 0 0 0 0 0 0 0 51 1 16.3829288 16.3829288 3374 Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No Yes No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No No phone Rented from private landlord Urban England South East South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 27 0 0 0 0 0 0 5000 5000 0 5000 5000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10000 10000 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 16.3829288 16.3829288 3384 No Yes No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None 11 to 20 Have not spent anything 11 to 20 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Don't know Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rented from private landlord Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 3200 0 2000 0 0 0 1200 2000 0 2000 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3200 2000 0 0 1200 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 20.9436417 20.9436417 3397 Yes Yes No No No Yes No No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Don't know Neither agree nor disagree (0) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Yes No No No No No No No No No No No No No No No No Yes No No Yes No Yes No No No No No No No No No No No No No No No Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No No Yes Phone Rented from local authority Urban England London South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 3200 0 0 0 0 0 3200 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 3200 0 0 0 3200 0 4 0 3 3 0 0 0 0 0 3 3 100 100 0 1 2 14.1186914 14.1186914 3444 Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No Once a month (12) No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) No No No No No Yes No No No No No No No Slightly confident (3) No No No No No No No No Yes No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 2 5+ Yes No No Phone Rented from local authority Urban England London South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No CAPI Adults 26 0 0 0 0 0 0 1600 1600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 1 0 10 0 1 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3100 3100 0 0 0 0 12 10 0 10 0 0 0 0 0 10 0 0 0 0 2 8 14.2379799 14.2379799 3447 No No No No No Yes No No Yes Yes No No No Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No Yes No Yes No Yes No Yes No No No Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ No Yes No Phone Rented from private landlord Urban England London South African Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 16.3829288 16.3829288 3448 Yes Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No No Yes No Yes Yes 2 4 Yes No No Phone Owned outright by household Urban England London South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 20.9436417 20.9436417 3457 Yes No No No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No Yes No No Yes No No No No No No 2-4 days a week (156) No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 25% to 49% 1 to 10 100% 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No Yes No No No No No No No No No Yes Yes No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rented from private landlord Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 2000 1000 1000 0 0 0 0 500 500 0 0 1000 1000 0 0 0 0 3 11 1 0 0 0 1 5 0 0 0 0 1 5 0 0 0 0 2 10 0 0 0 0 2 0 0 0 0 0 1 1 0 0 0 0 2 0 0 2 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 33.3333321 100 100 0 100 0 100 0 100 100 0 0 0 0 0 2000 1000 0 0 1000 0 15 6 6 12 2 16.666666 40 2 16.666666 10 10 100 100 0 3 2 20.1642647 20.1642647 3461 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No No Yes No Yes No 2 3 Yes No No Phone Rented from local authority Urban England London South White & Black Caribbean Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 0 0 0 2000 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 0 2000 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 12.5453987 12.5453987 3466 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 2 3 No Yes No No phone Rented from private landlord Urban England South West South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 3500 0 3500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 15 3 14.5573244 14.5573244 3527 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No Yes No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No Yes No Yes 1 3 No Yes No No phone Rented from private landlord Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 31 3000 0 0 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 11.4026108 11.4026108 3548 No No No No No Yes No No No Yes No No No Yes No No No No No No Yes No No No Yes No No No No Yes No No Yes No No Yes No No No No No No 2-4 days a week (156) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Slightly agree (2) No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No Not at all confident (1) No No Yes Yes No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 2 3 Yes Yes No Phone Rented from local authority Urban England East of England Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 450 0 0 0 0 450 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 450 0 0 450 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 12.8325901 12.8325901 3569 No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 1 1 No No Yes Phone Being bought on mortgage Urban England South East South Refused No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 20.1642647 20.1642647 3577 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 1 4 No Yes No Phone Rented from private landlord Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 25 0 0 0 0 0 0 3000 3000 0 0 0 0 600 0 600 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 11.4026108 11.4026108 3612 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 1 to 10 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 2 3 Yes No No Phone Rented from private landlord Urban England West Midlands Midlands Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 2700 0 200 0 0 0 2500 0 0 0 0 1000 1000 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 1000 0 0 2500 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 11.4026108 11.4026108 3659 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 1 4 No Yes No Phone Rented from private landlord Urban England North West North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAPI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 4 13.1496687 13.1496687 3679 No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No No Yes Phone Being bought on mortgage Urban England North West North Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 0 600 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 15.2585011 15.2585011 3700 Yes Yes Yes Yes No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No Yes No No Yes No No No Yes No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Being bought on mortgage Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 1200 0 0 0 0 0 1200 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1200 0 0 0 1200 0 2 0 1 1 0 0 0 0 0 1 0 0 0 0 1 2 18.3274593 18.3274593 3742 Yes Yes No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly disagree (-4) Don't know Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly disagree (-4) Yes No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No Yes No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 2 3 Yes No No Phone Being bought on mortgage Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 14.8905725 14.8905725 3763 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time Any Yes No No Yes No Yes Yes 1 4 No Yes No Phone Rented from private landlord Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 31 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 20 4 11.4026108 11.4026108 3764 No No No No No Yes No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No 2-4 days a week (156) Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) No No No No No No No No No No No No No No No No No Yes No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 2 3 Yes No No Phone Being bought on mortgage Urban England West Midlands Midlands White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAPI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 400 0 0 0 0 400 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 0 0 400 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 19.0358429 19.0358429 3769 Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No No Yes Yes Yes Yes 3 5+ Yes No No Phone Rented from local authority Urban England London South Bangladeshi Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 14.1186914 14.1186914 3786 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 2 5+ Yes No No Phone Being bought on mortgage Urban England North West North Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 11.6843576 11.6843576 3805 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No 5-6 days a week (286) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 About once a month (12) About once a month (12) About once a month (12) 21 to 30 11 to 20 1 to 10 21 to 30 1 to 10 1% to 24% 100% 21 to 30 100% 1 to 10 25% to 49% 25% to 49% 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 11 to 20 Have not spent anything 1 to 10 Have not spent anything 100+ 31 to 40 11 to 20 1 to 10 21 to 30 1 to 10 1% to 24% 11 to 20 75% to 99% 21 to 30 100% 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 11 to 20 Don't know Slightly agree (2) Don't know Don't know Strongly agree (4) Don't know Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No No Yes No No Yes 1 2 Yes No No Phone Rented from local authority Rural Scotland Scotland North White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAPI Adults 26 21500 20000 0 0 0 1500 1500 1500 0 0 0 0 0 0 0 0 0 0 0 1000 500 500 0 0 0 0 25 10 0 0 1 0 15 0 0 0 0 0 10 0 0 0 0 0 25 0 0 0 0 0 5 0 0 0 0 0 5 10 0 0 0 0 25 0 0 0 0 0 0 5 0 0 0 0 0 1 1 1 0 0 0 0 0 0 10 0 0 1 0 20 100 100 25 40 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22500 2000 0 500 0 20000 36 15 10 25 5 20 93.75 25 100 20 5 40 25 1 11 2 13.0367107 13.0367107 3821 No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No 2-3 times a month (30) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 31 to 40 None 31 to 40 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 41 to 50 None None Strongly disagree (-4) Don't know Strongly agree (4) Don't know Strongly agree (4) Neither agree nor disagree (0) Don't know Don't know Yes Yes No Yes No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No No Yes No Yes Yes 2 4 No Yes No Phone Being bought on mortgage Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 27 1000 0 0 1000 0 0 0 0 0 0 0 0 1600 0 1000 0 0 0 600 0 0 0 0 500 500 0 40 0 0 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2100 1500 0 0 600 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 45 4 15.3874197 15.3874197 3827 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No 2-4 days a week (156) Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Most days (365) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None None Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Don't know Slightly disagree (-2) Strongly disagree (-4) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Working Full time Any Yes No Yes No No No Yes 2 4 Yes No No Phone Rented from local authority Urban England Yorkshire and The Humber North Pakistani Minority Ethnic Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 10 0 0 0 0 0 5 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 10 5 15 0 0 0 0 0 15 15 100 100 0 0 4 13.1496687 13.1496687 3833 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No No phone Rented from local authority Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 13.5581951 13.5581951 3837 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 1 1 Yes No No Phone Rented from local authority Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 13.5581951 13.5581951 3850 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes No No Yes No 2 4 Yes No No Phone Being bought on mortgage Urban England North East North Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 11.6843576 11.6843576 3854 No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) No No No No No No No No Yes No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No No Yes Yes Yes Yes 2 5+ No Yes No No phone Rented from private landlord Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 15.2585011 15.2585011 3856 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) No No No No No No No No No No No No No No No No No Yes No No Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time Any Yes No Yes No No Yes No 4 5+ Yes No No Phone Being bought on mortgage Urban England East Midlands Midlands Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 2500 0 0 0 0 0 2500 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 0 0 0 2500 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 6 19.0358429 19.0358429 3901 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) No No No No No No No Yes No Yes Yes No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 2 4 Yes No No Phone Rented from local authority Urban England East Midlands Midlands African Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12.8325901 12.8325901 3902 No No No No No No No No No Yes Yes Yes No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Once a month (12) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No No Yes Yes Yes Yes 2 5+ Yes No No Phone Rented from local authority Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 0 0 0 2000 0 0 0 0 8000 8000 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10000 8000 0 0 2000 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 12.9410124 12.9410124 3910 No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 1 5+ No Yes No Phone Rented from private landlord Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 6 12.8325901 12.8325901 3912 No No Yes Yes No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No Once a month (12) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 Have not spent anything Have not spent anything 31 to 40 Have not spent anything 1 to 10 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Rented from private landlord Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 25 0 0 0 0 0 0 3000 3000 0 0 0 0 4000 0 0 0 0 0 4000 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 3000 0 0 4000 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 15.0163822 15.0163822 3921 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No No Yes 2 5+ Yes No No Phone Being bought on mortgage Urban England West Midlands Midlands Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 11.4026108 11.4026108 3924 No No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Don't know Slightly disagree (-2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes Yes No No Yes 2 4 Yes No No Phone Rented from private landlord Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 700 0 0 0 0 700 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 700 0 0 700 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 14.8905725 14.8905725 3989 No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Don't know Strongly disagree (-4) Yes No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No No Yes 1 2 No Yes No Phone Rented from local authority Urban England South East South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 600 0 600 0 0 0 0 2000 0 2000 0 3000 3000 0 0 0 0 3 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 13 2 14.1186914 14.1186914 3991 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No No phone Rented from private landlord Urban England South East South Caribbean Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.5573244 14.5573244 3992 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No No phone Rented from local authority Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 14.5573244 14.5573244 3996 Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Don't know Strongly agree (4) Strongly agree (4) Don't know Slightly agree (2) Don't know Strongly disagree (-4) Yes No No No No No No No Yes No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No No phone Rented from private landlord Urban England South East South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 14.1186914 14.1186914 3999 Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything 1 to 10 None None Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Strongly disagree (-4) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 5+ No Yes No Phone Rented from private landlord Urban England London South Any other Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 3200 0 0 0 0 0 3200 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3200 0 0 0 3200 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5 16.3829288 16.3829288 4013 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Slightly agree (2) Don't know Don't know Don't know Slightly agree (2) Neither agree nor disagree (0) Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 2 3 Yes No No No phone Rented from local authority Urban England London South African Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 20.9436417 20.9436417 4015 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None None Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No Yes No No No No No No Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No Yes No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No No No No Yes No 4 5+ Yes No No Phone Rented from local authority Urban England London South Bangladeshi Minority Ethnic No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 6 14.1186914 14.1186914 4019 Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No 5-6 days a week (286) Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 21 to 30 21 to 30 21 to 30 None None None None None None None 51 to 100 41 to 50 41 to 50 Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 Have not spent anything 21 to 30 Have not spent anything Have not spent anything 41 to 50 1 to 10 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything Have not spent anything 41 to 50 1 to 10 Have not spent anything 21 to 30 21 to 30 21 to 30 None None None None None None None None None None 41 to 50 1 to 10 Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Yes No No No No No No No No No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No Yes No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes No No No phone Rented from local authority Rural Scotland Scotland North White British White Yes No Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No Yes Yes No CAPI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 8500 0 2500 0 0 5000 1000 0 0 0 0 0 0 0 25 0 0 3 0 0 25 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 50 50 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6000 0 0 5000 1000 0 28 25 0 25 0 0 0 0 0 25 0 0 0 50 3 1 15.1274281 15.1274281 4043 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 41 to 50 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything Have not spent anything Have not spent anything 41 to 50 Have not spent anything 1 to 10 None None Slightly agree (2) Don't know Don't know Don't know Slightly agree (2) Don't know Don't know Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time Any Yes No No Yes No Yes No 3 5+ Yes No No Phone Rented from private landlord Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 5800 0 800 0 0 0 5000 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 0 0 0 5000 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5 13.1496687 13.1496687 4053 No No No No No No No No No No Yes Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Once a week (52) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Yes No No No No No No No No No No Yes No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 2 5+ Yes No No Phone Being bought on mortgage Urban England East of England Midlands Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 12.8325901 12.8325901 4076 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rented from private landlord Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 16.9146137 16.9146137 4082 Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No Don't know No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No Yes No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 2 4 Yes No No No phone Rented from private landlord Urban England South East South Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 14.2379799 14.2379799 4085 No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything Have not spent anything Have not spent anything 51 to 100 Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No No Yes Yes Yes Yes 2 5+ No Yes No Phone Being bought on mortgage Urban England London South White Irish White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 6000 0 0 0 0 0 6000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6000 0 0 0 6000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 14.1186914 14.1186914 4110 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No 2-3 times a month (30) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly disagree (-4) Don't know Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Strongly disagree (-4) Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No No Yes No Yes Yes 2 5+ Yes No No Phone Rented from local authority Rural Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 10.1271772 10.1271772 4126 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Rented from private landlord Urban Scotland Scotland North Any other mixed background Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 13.4417276 13.4417276 4169 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 13.4417276 13.4417276 4170 No No No No No No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 51 to 100 None 51 to 100 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 None None Strongly disagree (-4) Don't know Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No Yes No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No No phone Rented from private landlord Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 1500 0 0 1500 0 0 0 0 0 0 0 0 5000 0 5000 0 0 0 0 0 0 0 0 0 0 0 66 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 69 0 0 0 0 0 0 0 0 0 0 0 0 0 69 2 15.3874197 15.3874197 4193 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 2 5+ Yes No No No phone Rented from private landlord Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 11.6843576 11.6843576 4232 No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1% to 24% Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 2 3 No No Yes No phone Rented from private landlord Urban Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 33 0 0 0 0 0 0 5000 5000 0 40000 40000 0 1200 0 0 0 0 0 1200 0 0 0 0 0 0 0 0 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46200 45000 0 0 1200 0 11 0 0 0 0 0 9.090909 0 0 0 0 0 0 0 11 3 8.92327976 8.92327976 4241 No No Yes No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No Yes No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything None None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 2 3 Yes No No Phone Rented from private landlord Rural Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 0 0 0 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 0 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11.7512875 11.7512875 4244 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything None None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No No Yes No No Yes 4 5+ Yes No No Phone Owned outright by household Urban England London South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 750 0 0 0 0 0 750 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 750 0 0 0 750 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 12.5453987 12.5453987 4283 No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No Yes No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes Yes 4 5+ Yes No No Phone Rented from private landlord Urban England London South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 12.5453987 12.5453987 4287 No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time Any Yes No Yes No No Yes No 5+ 5+ No Yes No Phone Rented from private landlord Urban England London South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 14.5573244 14.5573244 4292 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Rented from private landlord Urban England London South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 14.5573244 14.5573244 4293 No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes Yes Yes Yes Yes 2 5+ No No Yes Phone Rented from private landlord Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 12.5453987 12.5453987 4294 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No No Yes No Yes No 2 4 No Yes No Phone Rented from local authority Urban England London South Any other Asian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12.5453987 12.5453987 4301 No No No No No No No No No No No Yes No Yes Yes No No No No No No No Yes No No No No No No No No Yes Yes No No Yes No No No No No No 5-6 days a week (286) No No No Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 31 to 40 31 to 40 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None 20 to 30 Have not spent anything 20 to 30 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 1 to 10 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No No No No No Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No No No Not particularly confident (2) No No No No No No No No No No Yes No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 No Yes No No phone Being bought on mortgage Urban England South West South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 27 0 0 0 0 0 0 1500 1500 0 0 0 0 3900 0 2500 0 0 0 1400 2500 0 2500 0 0 0 0 15 2 1 5 0 0 0 0 1 0 0 0 15 0 0 0 0 0 15 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 0 5 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5400 4000 0 0 1400 0 23 1 15 16 0 0 0 0 0 16 16 100 100 0 7 1 16.3829288 16.3829288 4317 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Don't know Don't know Slightly agree (2) Slightly agree (2) Don't know Don't know Don't know No No No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rented from private landlord Rural England South West South Any other Asian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 1000 0 0 500 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 500 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 14.1186914 14.1186914 4325 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No Yes 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Rented from local authority Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 32 1500 0 0 1500 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 5000 5000 0 2 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6500 6500 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 3 13.231267 13.231267 4389 No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 2 4 No Yes No No phone Rented from private landlord Urban England West Midlands Midlands Bangladeshi Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 4000 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 0 2000 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 4 11.4026108 11.4026108 4403 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 100+ 100+ 51 to 100 41 to 50 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 31 to 40 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything Have not spent anything 11 to 20 51 to 100 100+ 1 to 10 None None Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time Any Yes No No Yes Yes Yes Yes 1 3 Yes No No Phone Rented from private landlord Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAPI Adults 33 12000 7000 5000 0 0 0 0 0 0 0 0 0 8000 2000 0 0 0 2000 4000 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 0 0 2000 6000 12000 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 12.8325901 12.8325901 4406 Yes No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes Yes No No Yes No No No No No No 5-6 days a week (286) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No 51 to 100 41 to 50 31 to 40 1 to 10 3 Have not spent anything Have not spent anything 41 to 50 None 41 to 50 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything 11 to 20 21 to 30 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 11 to 20 41 to 50 51 to 100 None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) No Yes No Yes Yes Yes No No Yes No No No Yes No No No No No No No Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Rented from private landlord Urban England West Midlands Midlands White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAPI Adults 25 8000 4000 1000 3000 0 0 0 0 0 0 0 0 7000 0 5000 0 0 0 2000 0 0 0 0 3000 3000 0 50 0 0 30 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 30 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13000 6000 0 0 2000 5000 90 0 0 0 0 0 0 0 0 0 0 0 0 0 90 3 18.3274593 18.3274593 4414 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No 5-6 days a week (286) Yes No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 None 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 1 to 10 Have not spent anything 1 to 10 About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 1% to 24% 1 to 10 100% 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 11 to 20 1 to 10 Have not spent anything 31 to 40 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None None Strongly disagree (-4) Strongly disagree (-4) Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Don't know Strongly disagree (-4) Yes No Yes No No No No No No No No No No Very confident (4) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Being bought on mortgage Urban England West Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes CAPI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 3200 0 0 0 0 0 3200 2000 0 2000 0 1000 0 1000 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 100 100 6200 2000 1000 0 3200 0 10 10 0 10 0 0 0 2 20 10 10 100 100 0 0 2 19.0358429 19.0358429 4416 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No 5-6 days a week (286) No Yes No No Yes Yes Yes Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No Yes No No Yes Yes Yes Yes No No No No Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None None 1 to 10 50% to 74% 1 to 10 50% to 74% None 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Yes No Yes No No No No Yes No No No No No Yes No Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No Yes No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 2 3 Yes No No Phone Being bought on mortgage Urban England West Midlands Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAPI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 3 2 2 0 0 0 1 1 1 0 0 0 1 1 1 0 0 0 2 2 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 250 0 0 250 0 0 7 3 3 6 2 33.3333321 0 0 0 4 2 66.6666641 50 0 1 3 19.0358429 19.0358429 4432 No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No No phone Rented from private landlord Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 27 200 0 0 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200 200 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 13.1496687 13.1496687 4449 Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None None Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No No No Yes No Yes 2 3 No Yes No Phone Rented from local authority Urban England London South Indian Minority Ethnic No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 3 14.1186914 14.1186914 4455 No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No 2-3 times a month (30) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything None None None Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rented from private landlord Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 0 0 0 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 0 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 19.6710033 19.6710033 4463 Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 None None Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Rented from local authority Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 3300 1200 1200 0 0 0 900 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2100 0 0 0 2100 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 14.1186914 14.1186914 4510 No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 2 4 No Yes Yes Phone Rented from local authority Urban England East Midlands Midlands Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 11.4026108 11.4026108 4515 Yes No No No No Yes No No No Yes No Yes No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No Yes Yes No No No No No 5-6 days a week (286) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 100+ 100+ 100+ Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything 51 to 100 Have not spent anything None 51 to 100 51 to 100 Have not spent anything 11 to 20 None 11 to 20 100+ 100+ Have not spent anything Have not spent anything Have not spent anything 100+ 21 to 30 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 21 to 30 Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) No Yes No No No No No No No No No No No Very confident (4) No No No No No No No No Yes No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 2 4 Yes No No Phone Being bought on mortgage Urban England East Midlands Midlands White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes CAPI Adults 27 15799 14800 0 999 0 0 0 0 0 3600 3600 0 0 0 0 0 0 0 0 6000 0 6000 0 7000 7000 0 13 0 1 0 0 15 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 1 0 0 15 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32399 17599 0 0 0 14800 29 3 0 3 0 0 0 0 0 3 3 100 100 0 26 4 19.0358429 19.0358429 4520 No No No No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No 2-3 times a month (30) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Most days (365) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 2 3 No Yes No No phone Rented from private landlord Northern Ireland Northern Ireland North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAPI Adults 28 400 0 0 0 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 0 400 0 0 0 10 5 5 10 10 100 0 0 0 0 0 100 0 0 0 3 10.1271772 10.1271772 4526 Yes No Yes No No Yes No No No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None 11 to 20 100% 11 to 20 100% 100% 21 to 30 21 to 30 Have not spent anything 11 to 20 None 11 to 20 100+ 51 to 100 Have not spent anything Have not spent anything 31 to 40 Have not spent anything 41 to 50 21 to 30 21 to 30 None None None None 11 to 20 75% to 99% 21 to 30 100% 21 to 30 100% None 21 to 30 Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Slightly disagree (-2) Strongly disagree (-4) Slightly agree (2) Yes No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No Yes No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time Any Yes No No Yes Yes Yes No 5+ 5+ No No Yes Phone Urban England North East North White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 29 0 0 0 0 0 0 4510 4510 0 0 0 0 3500 3500 0 0 0 0 0 0 0 0 0 2598 2598 0 4 6 0 0 20 15 0 0 0 0 0 0 4 0 0 0 20 0 4 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 4 0 0 0 20 0 0 0 0 0 0 0 0 0 0 6 0 0 0 15 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 10608 7108 0 0 3500 0 45 0 24 24 0 0 0 20 83.3333359 24 24 100 100 0 21 5 11.6929893 11.6929893 4536 Yes No Yes Yes Yes Yes No No No No No No No Yes No No No Yes No No No No Yes No No No No No No No No Yes Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 Have not spent anything Have not spent anything Have not spent anything 100+ 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes No 4 4 Yes Yes No Phone Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 33 50000 50000 0 0 0 0 3500 3500 0 3500 3500 0 500 0 0 500 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57500 7500 0 0 0 50000 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 11.4110355 11.4110355 4541 Yes Yes No No No Yes No No No Yes Yes Yes No Yes Yes Yes No Yes No No No No No No No No No Yes No Yes No No Yes No Yes No No No No No No No Several times a day (730) Yes Yes No Yes No Yes No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No Yes Yes No Yes Yes No 100+ 100+ 100+ 41 to 50 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 1 to 10 Have not spent anything 41 to 50 100+ 11 to 20 1 to 10 1 to 10 1 to 10 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) No Yes No No No No No Yes No No No No No No No No Yes Yes No No No No Yes Yes Yes Yes No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England London South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes Yes No No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 35000 30000 5000 0 0 0 0 0 0 10000 10000 0 5000 5000 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 1 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 0 0 100 100 51000 10000 1000 0 5000 35000 11 10 0 10 8 80 0 0 0 2 2 100 100 0 1 2 18.6235714 18.6235714 4546 Yes No Yes No No Yes Yes No No Yes Yes Yes No Yes No Yes No Yes No No Yes No No No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes No Yes Yes Yes Yes No Yes No No No No Yes No Yes Yes Yes No Yes No No No No No No No No No No No Yes No No Yes No Yes Yes Yes Yes No Yes No No No No Yes No Yes Yes Yes No Yes No No No No No No No No No No No Yes No No Yes No Yes Yes No No Yes No Yes No Yes Yes No No Yes No Yes No Yes Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 1 to 10 1 to 10 Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 25% to 49% 1 to 10 50% to 74% 100% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 41 to 50 Have not spent anything 11 to 20 20 to 30 Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% 1 to 10 100% 100% 11 to 20 Have not spent anything 11 to 20 Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None None None 1 to 10 100% 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 20 to 30 51 to 100 Have not spent anything 20 to 30 Have not spent anything 11 to 20 11 to 20 1 to 10 11 to 20 1 to 10 25% to 49% None None 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 75% to 99% None 1 to 10 Neither agree nor disagree (0) Don't know Slightly disagree (-2) Slightly agree (2) Don't know Strongly agree (4) Don't know Neither agree nor disagree (0) Yes Yes No No No No No Yes Yes No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No Yes No No No No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No Yes No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 4 4 Yes Yes No Phone Urban England North West North White British White Yes No No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 34 0 0 0 0 0 0 0 0 0 1200 500 700 1000 0 0 0 1000 0 0 4500 0 2000 2500 1500 0 1500 3 1 3 3 2 4 3 1 1 2 1 3 0 0 1 1 1 1 3 1 2 3 2 4 0 0 1 3 0 3 0 0 0 0 0 0 2 0 0 1 1 0 2 0 1 1 0 2 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 66.6666641 0 0 0 0 0 100 100 50 0 0 100 100 100 0 33.3333321 66.6666641 0 100 0 0 50 100 100 75 0 0 100 100 10700 2500 5700 0 2500 0 16 11 4 15 7 46.6666679 0 4 26.666666 8 5 80 62.5 0 1 4 11.6929893 11.6929893 4553 Yes Yes No No No Yes No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No Yes No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything Have not spent anything 41 to 50 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 100+ 11 to 20 41 to 50 Have not spent anything 51 to 100 51 to 100 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 1 to 10 1% to 24% None None 1 to 10 100% 1 to 10 100% None 11 to 20 Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) No Yes Yes No No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban Scotland Scotland North Any other white White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 32 8000 7000 0 1000 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 0 5000 0 0 5000 1000 1000 0 10 0 0 0 2 2 0 0 0 0 0 1 0 0 0 0 2 0 0 0 0 0 2 1 0 0 0 0 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 10 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 100 0 100 100 23000 2000 5000 0 9000 7000 14 1 2 3 2 66.6666641 7.69230747 0 0 1 1 100 100 0 11 2 17.1963615 17.1963615 4561 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None None Don't know Slightly disagree (-2) Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No Yes Yes Yes Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes Yes No No Yes 4 4 Yes No No Phone Urban England North West North Caribbean Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 33 1700 0 1700 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1700 0 0 0 0 1700 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 16.6998844 16.6998844 4562 Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 1 to 10 1 to 10 Have not spent anything 20 to 30 Have not spent anything 31 to 40 1 to 10 21 to 30 31 to 40 1 to 10 1% to 24% None None None None 31 to 40 75% to 99% 31 to 40 75% to 99% None 1 to 10 Slightly agree (2) Strongly disagree (-4) Don't know Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes No Yes Yes Yes No No No No No No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No Yes Yes No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England London South Any other white White Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 1000 500 500 20 1 1 5 5 2 10 0 0 0 0 0 10 1 1 5 5 1 20 1 1 5 5 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 1 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 100 100 0 0 0 100 100 100 0 0 0 100 4000 500 500 0 3000 0 34 10 23 33 1 3.030303 0 0 0 32 31 96.969696 96.875 0 1 2 18.6235714 18.6235714 4563 Yes Yes Yes No No Yes Yes No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes No No No No No No Several times a day (730) Yes Yes No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None None Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Rural England East of England Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 34 1200 0 0 0 0 1200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 0 0 400 0 0 9 9 0 9 9 100 0 0 0 0 0 100 0 0 0 3 16.2971992 16.2971992 4565 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 11 to 20 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 41 to 50 Have not spent anything 41 to 50 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) No Yes No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 3 3 Yes Yes No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 5000 2000 0 3000 0 0 0 5000 0 5000 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10000 8000 0 0 2000 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 3 16.6998844 16.6998844 4570 Yes Yes No No No Yes No No Yes Yes Yes Yes No Yes Yes No No Yes No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Don't know Neither agree nor disagree (0) Slightly agree (2) Don't know Slightly agree (2) Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) No No No No No No No No No No No No No No No No Yes No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Part time Any Yes No No Yes No No Yes 2 2 Yes Yes No Phone Urban England South East South White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 28 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 2000 0 0 2000 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 18.6235714 18.6235714 4572 Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes Yes Yes Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes Yes No No No Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No Yes Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a week (52) 31 to 40 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 1% to 24% None None 1 to 10 100% 100% 11 to 20 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 11 to 20 20 to 30 About once a week (52) 2-3 times a week (130) 31 to 40 11 to 20 1 to 10 21 to 30 11 to 20 50% to 74% None None None 1 to 10 100% 100% 1 to 10 51 to 100 Have not spent anything 51 to 100 About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 11 to 20 Have not spent anything Most days (365) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% 11 to 20 1 to 10 1 to 10 About once a week (52) About once a week (52) 21 to 30 11 to 20 1 to 10 21 to 30 1 to 10 25% to 49% None 1 to 10 25% to 49% 11 to 20 100% 100% 1 to 10 Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 41 to 50 51 to 100 Have not spent anything Have not spent anything Have not spent anything 101 to 200 41 to 50 51 to 100 101 to 200 31 to 40 25% to 49% 1 to 10 1% to 24% 1 to 10 1% to 24% 51 to 100 100% 51 to 100 100% None 21 to 30 Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Yes Yes Yes Yes Yes No No Yes Yes No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes No Yes No No No No No No No Yes Yes No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No No Yes Phone Scotland Scotland North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 32 500 0 0 500 0 0 4500 1500 3000 6000 0 6000 0 0 0 0 0 0 0 2000 0 2000 0 1100 500 600 35 31 10 10 50 27 5 20 5 0 0 20 10 10 5 10 50 2 15 30 10 10 50 22 10 20 1 0 0 6 5 0 0 0 0 0 0 0 0 0 0 10 5 5 10 9 10 50 16 0 0 0 0 0 0 0 0 20 1 0 0 0 5 66.6666641 16.666666 0 100 100 66.6666641 0 0 100 100 10 0 0 100 100 0 0 0 50 100 100 0 0 0 100 100 27.272728 0 45.4545441 100 100 14100 4500 9600 0 0 0 163 50 87 137 37 27.0072994 7.9365077 10 7.29927015 100 100 100 100 0 26 2 16.5564308 16.5564308 4579 Yes Yes Yes No No Yes No No No No No No No Yes Yes Yes No No No Yes Yes No No No No No No No No Yes No No Yes No Yes No Yes No No No No No Several times a day (730) No No No No No No No Yes No No No No Yes No Yes No Yes Yes Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No No No Yes No Yes 3 3 Yes Yes No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 1500 1000 500 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 3 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1100 100 0 0 1000 0 3 1 0 1 0 0 0 0 0 1 0 0 0 0 2 3 16.6998844 16.6998844 4586 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No Yes No No No No No No No No No No No No No No No Yes Yes No No No No No Yes No 51 to 100 51 to 100 51 to 100 Have not spent anything 3 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 51 to 100 51 to 100 51 to 100 None None None 31 to 40 50% to 74% 51 to 100 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 21 to 30 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 Have not spent anything Have not spent anything 20 to 30 51 to 100 101 to 200 101 to 200 101 to 200 None None None None 31 to 40 25% to 49% 101 to 200 100% 101 to 200 100% None 11 to 20 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes No Yes Yes No No No No No Yes Yes No No No No No No No No No Yes Yes No Yes No Yes No No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England London South White British White No Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 26 8500 6000 0 2500 0 0 0 0 0 0 0 0 4100 2300 1800 0 0 0 0 0 0 0 0 1500 1500 0 70 0 0 0 90 3 0 0 0 0 0 0 60 0 0 0 90 0 60 0 0 0 90 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 0 0 0 0 60 0 0 0 90 0 0 0 0 0 0 0 0 0 10 0 0 0 0 3 0 0 66.6666641 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 12300 4000 0 0 2300 6000 163 0 150 150 0 0 0 40 26.666666 150 150 100 100 0 13 2 18.6235714 18.6235714 4590 Yes No No No No Yes No No No No No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No Yes No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 500 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 16.9271107 16.9271107 4591 Yes No No No No Yes Yes No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) No Yes No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 3 3 Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 None None 100% 1 to 10 25% to 49% None None None 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything 1 to 10 Have not spent anything Have not spent anything 21 to 30 11 to 20 11 to 20 None None 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 25% to 49% None 11 to 20 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 No Yes No Phone Urban England South East South White British White No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 33 5000 0 0 2000 0 3000 0 0 0 5000 5000 0 1500 0 0 1500 0 0 0 0 0 0 0 3000 3000 0 11 0 1 3 6 4 0 0 0 0 0 0 8 0 0 0 6 0 8 0 0 0 6 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 3 0 1 3 0 4 0 100 37.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 12500 11500 0 1000 0 0 25 0 14 14 0 0 27.272728 3 21.4285717 14 6 42.8571434 42.8571434 0 11 3 14.5680799 14.5680799 4596 Yes Yes Yes Yes No Yes No No No Yes No No No Yes Yes No No Yes Yes Yes No No No No No No No Yes No Yes No No Yes No No Yes No No No No No No Once a day (365) No No No No No No Yes No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 51 to 100 3 Have not spent anything 3 41 to 50 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything About once a month (12) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 51 to 100 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything 31 to 40 None 31 to 40 100+ 100+ Have not spent anything Have not spent anything 51 to 100 20 to 30 51 to 100 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 51 to 100 Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes Yes Yes Yes No Yes Yes No Yes Yes No No Yes Yes Yes No Yes No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No Yes Yes No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time Any Yes No Yes No No Yes Yes 3 3 Yes Yes No Phone Urban England London South White Irish White No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 33 7500 0 3000 4500 0 0 12000 12000 0 5000 5000 0 10500 9000 1500 0 0 0 0 0 0 0 0 16000 16000 0 5 12 1 0 0 35 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 10 1 0 0 35 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49500 37500 0 0 9000 3000 53 0 2 2 2 100 0 0 0 0 0 100 0 0 51 3 17.9305305 17.9305305 4600 Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No Yes Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Rural England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 13.2410421 13.2410421 4604 Yes Yes No No No Yes No No No No No No No Yes Yes Yes No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No Yes No Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 1 to 10 Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 1% to 24% None None None 1 to 10 100% 100% 11 to 20 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Rural England South West South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1800 1500 300 0 0 0 0 2 18 0 0 0 0 0 6 0 0 0 0 2 0 0 0 0 0 2 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 5 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 16.666666 0 0 100 100 1800 1500 300 0 0 0 20 6 2 8 1 12.5 0 0 0 7 7 100 100 0 12 2 18.6235714 18.6235714 4606 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 101 to 200 101 to 200 101 to 200 None None 51 to 100 50% to 74% 101 to 200 100% 100% Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything 20 to 30 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 Have not spent anything Have not spent anything 11 to 20 11 to 20 201 to 500 201 to 500 201 to 500 None None None None 51 to 100 25% to 49% 201 to 500 100% 201 to 500 100% None None Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) No Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 30 2000 2000 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 3000 0 3000 0 0 0 0 200 0 0 0 5 0 0 0 0 0 0 0 200 0 0 0 5 0 200 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 200 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 6500 3000 0 0 1500 2000 205 0 205 205 0 0 0 100 48.7804871 205 205 100 100 0 0 2 16.6998844 16.6998844 4611 No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No No No No Yes Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 21 to 30 11 to 20 1 to 10 2-3 times a week (130) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None 1 to 10 100% None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 25% to 49% None None None None None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England East Midlands Midlands White British White Yes No No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 32 0 0 0 0 0 0 0 0 0 2200 1200 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 3 0 0 0 1 3 1 0 0 0 0 1 1 0 0 0 1 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2200 1200 1000 0 0 0 8 5 2 7 0 0 0 2 28.5714283 7 0 0 0 0 1 3 16.9271107 16.9271107 4618 Yes Yes Yes Yes No Yes Yes No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 51 to 100 3 3 Have not spent anything 11 to 20 Have not spent anything 3 3 Most days (365) 51 to 100 41 to 50 41 to 50 41 to 50 100% None None None 100% 11 to 20 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 11 to 20 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 1 to 10 25% to 49% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 11 to 20 1 to 10 11 to 20 20 to 30 20 to 30 51 to 100 1 to 10 51 to 100 51 to 100 51 to 100 75% to 99% None None 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 21 to 30 Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) No No Yes No No No No Yes No No No No No No No No Yes No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban Northern Ireland Northern Ireland North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 7200 3000 0 1500 0 2700 0 0 0 0 0 0 3800 2000 300 0 400 900 200 900 300 0 600 300 300 0 70 0 0 4 4 2 0 0 0 2 0 0 50 0 0 2 3 0 50 0 0 4 3 0 50 0 0 4 2 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 20 0 0 0 1 2 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 25 0 100 66.6666641 0 33.3333321 100 100 0 0 0 0 0 10400 1800 1000 1800 2800 3000 80 2 55 57 56 98.2456131 0 1 1.75438595 1 1 100 100 0 23 2 13.2465572 13.2465572 4622 No No No No No Yes No No No Yes No No No Yes No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Don't know No No No Yes No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No Yes No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 No Yes No Phone Urban England London South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 1800 1800 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3800 2000 0 0 1800 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 3 18.6235714 18.6235714 4625 Yes Yes No No No Yes Yes No No No Yes Yes Yes Yes Yes No No Yes Yes No No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 21 to 30 11 to 20 1 to 10 11 to 20 Have not spent anything Have not spent anything 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 Have not spent anything Have not spent anything 20 to 30 51 to 100 1 to 10 1 to 10 1 to 10 None None 1 to 10 1% to 24% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No No Yes No Yes No 4 4 Yes Yes No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes CAWI Adults 34 10000 10000 0 0 0 0 0 0 0 0 0 0 4699 1500 600 2000 0 0 599 300 300 0 0 2000 2000 0 0 0 0 3 1 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 100 0 0 0 0 0 0 0 0 16099 4000 0 0 2099 10000 7 1 0 1 0 0 16.666666 0 0 1 1 100 100 0 6 4 17.3453598 17.3453598 4629 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Slightly disagree (-2) Strongly disagree (-4) No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban Scotland Scotland North Bangladeshi Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 1600 1600 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 100 100 0 0 0 0 0 0 0 0 0 0 2100 500 0 0 1600 0 3 0 2 2 0 0 0 0 0 2 2 100 100 0 1 2 16.5564308 16.5564308 4637 No Yes No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 41 to 50 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 31 to 40 31 to 40 Have not spent anything 51 to 100 Have not spent anything Have not spent anything Have not spent anything 11 to 20 None 11 to 20 20 to 30 Have not spent anything 20 to 30 Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything Have not spent anything 31 to 40 Have not spent anything 41 to 50 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 27 4500 0 0 4500 0 0 0 0 0 0 0 0 11500 3500 0 8000 0 0 0 3000 0 3000 0 1500 1500 0 20 0 0 20 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 20 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20500 17000 0 0 3500 0 48 0 0 0 0 0 0 0 0 0 0 0 0 0 48 2 13.5682125 13.5682125 4639 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 17.3453598 17.3453598 4652 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No Yes Yes No Yes Yes No No No No No No Several times a day (730) Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Every 2-3 weeks (30) 31 to 40 31 to 40 31 to 40 31 to 40 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 11 to 20 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 51 to 100 Have not spent anything 11 to 20 None 11 to 20 100+ 100+ 11 to 20 Have not spent anything 11 to 20 Have not spent anything 51 to 100 31 to 40 1 to 10 31 to 40 31 to 40 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Neither agree nor disagree (0) Don't know Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Yes Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Rural England Yorkshire and The Humber North White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 27 1200 0 0 0 1200 0 0 0 0 0 0 0 4500 2000 0 2500 0 0 0 800 0 800 0 7000 7000 0 32 0 0 4 5 13 32 0 0 0 0 0 0 0 0 0 5 0 32 0 0 0 5 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 4 0 13 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 13500 10300 1200 0 2000 0 54 32 5 37 32 86.4864883 0 0 0 5 5 100 100 0 17 4 17.3453598 17.3453598 4654 Yes Yes Yes No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% 75% to 99% None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) 11 to 20 Have not spent anything 1 to 10 Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 75% to 99% None None None 100% None None Slightly disagree (-2) Don't know Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Don't know No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 2300 1500 800 0 0 0 0 0 0 0 0 500 0 500 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 83.3333359 0 0 100 2000 0 500 0 1500 0 6 6 0 6 6 100 83.3333359 0 0 0 0 100 0 0 0 3 16.9271107 16.9271107 4658 Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes No No No No No Yes No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 101 to 200 51 to 100 51 to 100 101 to 200 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 51 to 100 1 to 10 41 to 50 51 to 100 None None None None 51 to 100 75% to 99% 75% to 99% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 101 to 200 51 to 100 51 to 100 101 to 200 None None None None 101 to 200 75% to 99% None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 101 to 200 1 to 10 51 to 100 101 to 200 51 to 100 75% to 99% None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 501 to 1000 201 to 500 201 to 500 501 to 1000 51 to 100 1% to 24% None None None None 51 to 100 1% to 24% 51 to 100 25% to 49% None None Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Neither agree nor disagree (0) Yes Yes Yes Yes No No No Yes No No No No Yes Yes Yes No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No No Yes Yes No Yes No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No No Yes Phone Urban England Yorkshire and The Humber North Any other Minority Ethnic Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200 2 60 200 110 0 100 1 10 100 10 0 100 1 50 100 100 0 200 2 60 200 110 0 0 0 0 0 95 0 0 0 0 0 0 0 0 0 0 0 0 0 195 0 1 55 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 50 0 0 0 91.6666641 91.6666641 0 0 0 97.5 0 0 86.3636398 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 572 221 351 572 95 16.6083908 0 0 0 477 71 29.0209789 14.884696 0 0 1 13.5682125 13.5682125 4661 Yes No Yes No No Yes No No No Yes Yes Yes No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No Yes No No No Yes No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No Yes No No No No Yes No Yes No No No Yes No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Less often (6) Most days (365) 101 to 200 1 to 10 51 to 100 101 to 200 1 to 10 1% to 24% 100% None None 51 to 100 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 1 to 10 11 to 20 Every 2-3 weeks (30) Most days (365) 21 to 30 1 to 10 11 to 20 11 to 20 11 to 20 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 20 to 30 Have not spent anything Have not spent anything Have not spent anything 101 to 200 1 to 10 101 to 200 101 to 200 21 to 30 1% to 24% 1 to 10 1% to 24% None None 101 to 200 100% 101 to 200 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 25 200 0 0 100 100 0 3000 1000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 102 22 0 1 10 2 1 5 0 0 0 0 100 15 0 1 10 0 101 20 0 1 10 0 1 20 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 1 10 0 0 0 0 0 0 0 0 0 1 2 0 0 0 2 0.990099013 100 0 100 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 3700 1600 2100 0 0 0 137 6 126 132 21 15.909091 7.69230747 0 0 111 111 100 100 0 5 2 13.5682125 13.5682125 4664 Yes Yes Yes Yes Yes Yes Yes No No No No No No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 11 to 20 Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 2000 0 0 0 500 1500 0 0 0 0 0 0 599 0 0 0 0 599 0 0 0 0 0 399 399 0 4 0 0 7 1 1 4 0 0 0 0 0 0 0 0 7 1 0 4 0 0 7 1 0 4 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 1998 399 500 1099 0 0 13 4 8 12 11 91.6666641 0 0 0 1 1 100 100 0 1 3 16.2971992 16.2971992 4666 Yes Yes Yes No No Yes No No No No Yes Yes Yes Yes Yes Yes No No No Yes Yes No Yes No No No No No No Yes Yes No Yes No No Yes No No No No No No Several times a day (730) No No No Yes No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No Yes No No No No No Yes Yes Yes No No Yes No No Yes Yes Yes No No Yes No No Yes Yes Yes No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 51 to 100 41 to 50 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 None None 25% to 49% None None 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 Have not spent anything Have not spent anything 51 to 100 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% 1 to 10 1% to 24% None None 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No No No No No Yes Yes No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England London South Any other Black Minority Ethnic No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 29 999 0 0 999 0 0 500 500 0 0 0 0 6598 4800 0 1000 0 0 798 0 0 0 0 0 0 0 2 2 4 6 5 0 0 0 4 0 0 0 1 0 0 2 5 0 1 0 4 2 5 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 4 2 5 0 0 0 0 0 0 0 0 0 1 2 0 4 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 100 100 0 25 0 50 100 100 0 0 0 100 100 0 0 0 0 0 8097 2499 0 0 5598 0 19 4 8 12 1 8.33333302 12.5 0 0 11 11 100 100 0 7 2 17.9305305 17.9305305 4671 Yes Yes Yes No Yes Yes Yes No No No No Yes No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No Yes Yes Yes Yes No No No No No No Several times a day (730) Yes No Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes Yes Yes Yes Yes Yes No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No Yes Yes No Yes No Yes Yes No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 100+ 100+ 20 to 30 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None None None None None None None 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 2-3 times a week (130) 31 to 40 21 to 30 1 to 10 31 to 40 None None None None None None None 41 to 50 31 to 40 1 to 10 About once a month (12) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 100+ 100+ 31 to 40 Have not spent anything Have not spent anything Have not spent anything 51 to 100 51 to 100 1 to 10 51 to 100 11 to 20 1% to 24% 1 to 10 1% to 24% None None None None None 1% to 24% None 11 to 20 Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Strongly disagree (-4) Neither agree nor disagree (0) Yes Yes Yes Yes Yes Yes No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 3 3 Yes Yes No Phone Urban England North West North White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 33 0 0 0 0 0 0 18000 15000 3000 0 0 0 2000 0 0 2000 0 0 0 0 0 0 0 5000 4000 1000 3 8 3 15 40 11 3 3 3 12 30 3 0 0 0 0 10 0 3 3 3 12 40 3 3 3 3 0 0 3 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 3 0 8 100 0 0 0 100 100 0 0 0 100 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 25000 21000 4000 0 0 0 80 54 10 64 12 18.75 10.7142859 0 0 52 0 18.75 0 0 16 3 16.6998844 16.6998844 4674 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes No Yes Yes No No No Yes No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 11 to 20 11 to 20 11 to 20 1 to 10 50% to 74% None None None 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) Don't know 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 21 to 30 21 to 30 1 to 10 21 to 30 11 to 20 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No Yes No No No No No Yes Yes No No No No No No No Yes Yes No No No No Yes Yes No Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England London South White British White Yes No No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 29 1000 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 2 0 0 0 5 20 0 0 0 0 4 0 2 0 0 0 1 20 2 0 0 0 5 10 2 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 1000 0 1000 0 0 0 27 24 3 27 17 62.9629631 0 0 0 10 10 100 100 0 0 2 18.6235714 18.6235714 4677 Yes Yes No No No Yes Yes No No Yes No Yes No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 31 to 40 Have not spent anything 11 to 20 None None Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 7500 4000 2000 1500 0 0 0 2000 2000 0 0 1000 1000 0 0 0 0 3 8 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 8 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6500 2500 0 0 4000 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 15 2 13.2410421 13.2410421 4680 Yes Yes No No No No No No No Yes No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 11 to 20 Less often (6) Don't know 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No Yes No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No Yes Yes Yes 4 4 Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 30 1925 0 0 0 425 1500 0 0 0 1000 1000 0 500 0 500 0 0 0 0 500 500 0 0 0 0 0 3 0 10 0 1 0 1 0 0 0 0 0 2 0 0 0 0 0 3 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 1 0 33.3333321 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1925 1000 425 500 0 0 14 1 2 3 1 33.3333321 0 0 0 2 2 100 100 0 11 4 16.6998844 16.6998844 4681 Yes Yes No Yes No Yes No No Yes Yes Yes Yes No Yes Yes No No No No No Yes Yes No No No No No No No Yes No Yes Yes No No No No No No No No No Several times a day (730) No Yes No Yes Yes Yes No Yes No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No Yes Yes Yes Yes No No No No Yes No Yes Yes Yes No Yes No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No Yes Yes Yes Yes No No No Yes No Yes No Yes Yes No No Yes No Yes No Yes Yes No No Yes No Yes No Yes Yes No No 100+ 100+ 100+ 11 to 20 1 to 10 3 41 to 50 41 to 50 Most days (365) 1001+ 501 to 1000 501 to 1000 201 to 500 50% to 74% 100% 21 to 30 1% to 24% 201 to 500 100% 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 41 to 50 21 to 30 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% 1 to 10 51 to 100 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 21 to 30 Have not spent anything About once a week (52) 2-3 times a week (130) About once a week (52) 51 to 100 21 to 30 21 to 30 51 to 100 41 to 50 75% to 99% 1% to 24% None None 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 31 to 40 11 to 20 Have not spent anything 11 to 20 2-3 times a week (130) 2-3 times a week (130) About once a week (52) 101 to 200 41 to 50 51 to 100 101 to 200 21 to 30 1% to 24% 1% to 24% None None 101 to 200 100% 100% 1 to 10 1 to 10 21 to 30 11 to 20 11 to 20 Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 51 to 100 31 to 40 31 to 40 100+ 1001+ 51 to 100 1001+ 1001+ 501 to 1000 25% to 49% 501 to 1000 75% to 99% 21 to 30 1% to 24% 501 to 1000 100% 501 to 1000 100% 11 to 20 11 to 20 Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Neither agree nor disagree (0) Yes Yes Yes No Yes Yes No Yes No No No No No Yes Yes Yes Yes No Yes Yes No Yes No No No No No No Yes Yes Yes Yes Yes Yes No Yes No No No No No No No No No No Yes Yes No No No Yes No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England South East South Indian Minority Ethnic No Yes No No Yes No Yes Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes No Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 29 30000 20000 1500 1000 3000 4500 300 300 0 4600 2600 2000 7400 1500 2000 0 1400 2500 0 3500 1500 0 2000 2800 1500 1300 1005 5 3 55 152 8 0 0 2 25 50 5 1000 3 0 30 100 0 1000 3 2 55 150 5 500 3 1 50 25 5 505 0 0 10 5 0 30 0 0 0 0 0 2 500 0 1 5 125 0 0 0 0 0 0 5 10 3 5 2 1 0 2 3 50 100 3 100 100 100 0 0 0 100 50 0 0 100 100 90.9090881 20 0 3.63636374 100 100 16.666666 18.5185184 0 100 100 100 0 0 0 100 44100 5400 9700 4000 3500 21500 1228 82 1133 1215 584 48.0658455 87.1021805 30 2.46913576 631 631 100 100 18 13 2 17.9305305 17.9305305 4686 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No No No No No Yes No No No No Yes No No Yes No No No Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) No No No Yes No No No No Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England East Midlands Midlands White British White Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1600 1600 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1600 1600 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 16.9271107 16.9271107 4704 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything 11 to 20 None 11 to 20 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 1% to 24% Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) No Yes No No No No No Yes Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No No Yes 5+ 5+ Yes No No Phone Urban England South East South White British White Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No CAWI Adults 28 1099 0 0 1099 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12000 12000 0 10 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 15 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13099 13099 0 0 0 0 25 0 0 0 0 0 20 0 0 0 0 0 0 0 25 5 12.5546675 12.5546675 4707 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Once a day (365) No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 20 to 30 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 25% to 49% 1 to 10 100% None 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 32 0 0 0 0 0 0 2000 2000 0 0 0 0 3000 2000 0 1000 0 0 0 0 0 0 0 0 0 0 0 6 0 2 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 2 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 2 0 0 0 0 0 0 0 100 0 100 0 100 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 3000 0 0 2000 0 8 3 0 3 3 100 25 3 100 0 0 100 0 0 5 3 11.6929893 11.6929893 4710 Yes Yes Yes No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Yes Yes Yes Yes Yes No No Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 11 to 20 Every 2-3 weeks (30) 2-3 times a week (130) 21 to 30 11 to 20 1 to 10 21 to 30 21 to 30 100% 1% to 24% 11 to 20 75% to 99% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None None None 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 1 to 10 Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 25% to 49% 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% 1 to 10 100% 100% Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) 100+ 100+ 11 to 20 Have not spent anything 20 to 30 Have not spent anything 51 to 100 31 to 40 11 to 20 41 to 50 31 to 40 50% to 74% 1 to 10 25% to 49% 21 to 30 25% to 49% 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) No Yes Yes Yes No No Yes No No No No No No No Yes Yes No Yes No No Yes Yes No No No No No No No Yes Yes Yes No Yes No Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 32 0 0 0 0 0 0 11500 10000 1500 0 0 0 3000 3000 0 0 0 0 0 1000 500 500 0 0 0 0 10 30 6 2 7 1 5 20 3 1 3 0 5 5 3 1 3 1 10 25 6 2 6 1 0 25 0 2 5 1 0 5 0 2 2 1 0 20 0 0 1 1 0 10 0 6 0 1 0 0 0 0 0 0 0 0 0 0 5 0 0 1 0 0 0 0 100 100 100 16.666666 80 0 100 0 0 0 100 100 100 100 0 0 0 100 83.3333359 33.3333321 16.666666 100 100 100 100 100 0 100 15000 10500 1500 0 3000 0 56 32 18 50 33 66 25.6410255 22 44 17 17 100 100 0 6 1 16.9271107 16.9271107 4718 No Yes No No No No No No No No No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No Yes No No No Yes No No No Yes No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None 1 to 10 50% to 74% None None None 50% to 74% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 No Yes No Phone Urban England London South Indian Minority Ethnic No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 30 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 1 1 0 2 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 0 100 3500 3500 0 0 0 0 4 1 1 2 1 50 0 1 50 1 0 50 0 0 2 3 18.6235714 18.6235714 4720 Yes Yes Yes No Yes Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England West Midlands Midlands White British White No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 2700 0 2700 0 0 0 0 2700 2700 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 16.2971992 16.2971992 4723 Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes Yes No Yes No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes No No No No No No No Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes No Yes Yes No No No No No No 100+ 3 11 to 20 1 to 10 11 to 20 41 to 50 41 to 50 41 to 50 2-3 times a week (130) 2-3 times a week (130) 2-3 times a week (130) 101 to 200 31 to 40 51 to 100 101 to 200 101 to 200 75% to 99% None 1 to 10 1% to 24% 1 to 10 100% 100% 21 to 30 1 to 10 1 to 10 11 to 20 Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything Most days (365) Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 1 to 10 21 to 30 11 to 20 1 to 10 2-3 times a week (130) 2-3 times a week (130) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 1 to 10 51 to 100 31 to 40 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1 to 10 Most days (365) Most days (365) 51 to 100 21 to 30 11 to 20 41 to 50 21 to 30 50% to 74% None 1 to 10 1% to 24% 1 to 10 1% to 24% 11 to 20 100% 100% 1 to 10 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 11 to 20 1 to 10 1 to 10 2-3 times a week (130) Most days (365) 21 to 30 1 to 10 11 to 20 21 to 30 21 to 30 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 51 to 100 20 to 30 20 to 30 20 to 30 201 to 500 51 to 100 101 to 200 201 to 500 101 to 200 75% to 99% None None 11 to 20 1% to 24% 21 to 30 100% 21 to 30 100% 11 to 20 21 to 30 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No Yes No Yes No Yes No Yes No Yes Yes No No Yes No Yes No No Yes No Yes No No No No No No No No No No No Yes No No No No No No No No Very confident (4) No No No No No No No No No No No No Yes No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 25 14500 2000 1000 2000 5000 4500 3000 3000 0 3000 2000 1000 7300 2000 1000 1000 2000 1000 300 3000 1500 1000 500 0 0 0 155 11 9 55 26 2 40 3 3 30 4 1 100 3 4 20 20 1 140 6 7 50 24 2 130 6 7 30 24 2 0 0 0 0 0 0 10 0 0 10 0 0 10 10 0 0 20 0 0 30 10 10 3 2 0 0 0 15 5 2 5 2 0 92.8571396 0 7.14285707 100 100 100 0 0 0 100 100 0 0 0 100 60 0 20 20 100 100 100 0 0 0 100 100 0 0 0 100 25800 9000 8500 2500 2800 3000 258 81 148 229 199 86.8995667 0 20 8.73362446 30 30 100 100 15 29 2 13.2410421 13.2410421 4729 Yes Yes Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes No No No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything About once a month (12) 51 to 100 21 to 30 21 to 30 21 to 30 100% None None None 100% 21 to 30 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) 41 to 50 31 to 40 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 51 to 100 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 11 to 20 Have not spent anything 51 to 100 Have not spent anything 51 to 100 21 to 30 21 to 30 21 to 30 100% None None None None None 100% None 41 to 50 Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) No No No No No No No No Yes No No No No No No No Yes Yes Yes No No No Yes Yes No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England North West North White British White Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 32 3000 0 0 2000 1000 0 4799 4000 799 0 0 0 12000 6000 3000 3000 0 0 0 0 0 0 0 2000 2000 0 56 5 0 6 0 3 26 1 0 0 0 0 0 0 0 0 0 0 26 1 0 0 0 0 26 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 4 0 6 0 3 100 0 0 0 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18799 11000 1799 0 6000 0 70 27 0 27 27 100 0 0 0 0 0 100 0 0 43 2 16.6998844 16.6998844 4733 Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 41 to 50 3 11 to 20 1 to 10 11 to 20 Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 11 to 20 11 to 20 Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 25% to 49% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 51 to 100 11 to 20 1 to 10 11 to 20 1 to 10 11 to 20 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 20 to 30 1 to 10 11 to 20 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything About once a week (52) 1 to 10 None 1 to 10 1 to 10 100+ 51 to 100 11 to 20 1 to 10 51 to 100 20 to 30 21 to 30 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 1 to 10 1% to 24% 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% 1 to 10 11 to 20 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No Yes No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 4 4 Yes No No Phone Urban England Yorkshire and The Humber North Indian Minority Ethnic No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 5000 2000 1000 2000 0 0 2000 2000 0 0 0 0 14000 6000 2000 1000 2000 1000 2000 3000 1000 2000 0 200 200 0 4 7 0 7 1 6 0 0 0 3 0 0 0 5 0 0 0 0 0 5 0 3 0 0 0 3 0 2 0 0 2 2 0 0 0 0 0 2 0 2 0 0 2 0 2 0 1 0 0 0 0 0 0 0 0 0 1 4 2 0 4 1 6 0 50 0 0 0 60 40 40 100 100 0 0 0 0 0 66.6666641 0 66.6666641 66.6666641 100 100 0 0 0 0 0 0 0 0 0 0 21200 7200 2000 1000 8000 3000 25 3 5 8 5 62.5 18.181818 4 50 3 3 100 100 1 17 4 11.6929893 11.6929893 4736 Yes Yes No No No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes No No No No No No No Several times a day (730) Yes No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 4 4 Yes No No Phone Rural Scotland Scotland North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 1000 0 1000 0 0 0 3 0 3 3 3 100 0 0 0 0 0 100 0 0 0 4 16.5564308 16.5564308 4750 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Several times a day (730) No No Yes No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 20 to 30 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 25% to 49% None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 20 to 30 Have not spent anything 11 to 20 Have not spent anything 51 to 100 1 to 10 51 to 100 51 to 100 1 to 10 1% to 24% 1 to 10 25% to 49% None None 51 to 100 100% 51 to 100 100% None 1 to 10 Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No No No No No No No No No No Yes No Yes Yes No Yes No No No No No No No No No Yes Yes No Yes No No Yes No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No No Yes No Yes No 3 3 Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 0 0 0 0 0 0 5500 2500 3000 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 80 0 0 6 0 0 0 0 0 0 0 0 80 0 0 6 0 0 80 0 0 4 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 80 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 66.6666641 33.3333321 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 7500 2500 3000 0 2000 0 88 6 80 86 4 4.65116262 33.3333321 0 0 82 82 100 100 0 2 3 13.2410421 13.2410421 4753 Yes Yes Yes Yes No Yes No No Yes No Yes Yes No Yes Yes Yes No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No Yes Yes Yes Yes Yes No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 41 to 50 Have not spent anything Have not spent anything 1 to 10 11 to 20 Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 11 to 20 100% 25% to 49% None None 1 to 10 25% to 49% 100% Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 11 to 20 41 to 50 Have not spent anything 21 to 30 11 to 20 11 to 20 11 to 20 100% 11 to 20 50% to 74% None None None 100% None 11 to 20 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rural England East of England Midlands White British White No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 32 2000 0 0 2000 0 0 1900 1900 0 1900 1900 0 7000 5000 0 0 500 1500 0 0 0 0 0 700 700 0 10 2 1 15 0 1 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 15 0 0 10 0 0 7 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2 1 0 0 1 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 100 46.6666679 0 33.3333321 0 100 0 0 0 0 0 0 0 0 0 0 13500 6500 500 1500 5000 0 29 15 0 15 15 100 58.6206894 0 0 0 0 100 0 0 14 2 16.2971992 16.2971992 4756 Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes No No Yes No No No No No No No No Yes Yes Yes Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No Yes No No 100+ 51 to 100 51 to 100 Have not spent anything 31 to 40 1 to 10 Have not spent anything Have not spent anything About once a month (12) 51 to 100 11 to 20 11 to 20 11 to 20 100% None None None 100% 41 to 50 Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 100% 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 Have not spent anything 1 to 10 51 to 100 51 to 100 21 to 30 1 to 10 21 to 30 21 to 30 75% to 99% 1 to 10 1% to 24% None None 1 to 10 100% 1 to 10 100% None 51 to 100 Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Slightly agree (2) No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Rural England East of England Midlands Any other white White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 11000 6000 0 4000 1000 0 0 0 0 0 0 0 3000 1000 2000 0 0 0 0 2000 2000 0 0 1500 1500 0 70 0 1 1 4 3 20 0 1 0 0 0 0 0 0 1 3 0 20 0 1 1 3 0 20 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 3 0 0 0 0 0 0 0 0 0 50 0 0 0 1 3 100 0 0 0 100 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 100 0 100 0 100 100 0 0 0 0 0 13500 5500 1000 0 1000 6000 79 21 4 25 21 84 1.33333337 0 0 4 4 100 100 0 54 2 11.4110355 11.4110355 4759 Yes No Yes No Yes No No No No No No No No Yes No No No No Yes Yes No No No No No No No No No No No Yes Yes No No Yes Yes No No No No No Once a day (365) Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) No No Yes No No No No No Yes No Yes No No No No No No No No No No No No No No No No No Yes No No Not particularly confident (2) No No Yes No No No No No Yes No No No Yes No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 1000 0 1000 0 0 0 0 3 0 0 7 2 0 3 0 0 0 0 0 0 0 0 2 2 0 3 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 12 3 4 7 0 0 0 0 0 7 0 0 0 0 5 1 13.2410421 13.2410421 4760 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None None Slightly agree (2) Don't know Slightly agree (2) Neither agree nor disagree (0) Don't know Slightly disagree (-2) Don't know Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England North East North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 1 0 0 0 0 0 0 0 10 0 0 0 1 0 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 11 0 11 11 0 0 0 0 0 11 11 100 100 0 0 2 11.6929893 11.6929893 4765 Yes Yes Yes Yes No Yes Yes No Yes Yes Yes Yes No Yes Yes Yes No No No No Yes No Yes No No No No Yes No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 51 to 100 51 to 100 41 to 50 11 to 20 11 to 20 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 11 to 20 51 to 100 21 to 30 None None Neither agree nor disagree (0) Don't know Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No Yes Yes No No No No No No No No No No No Slightly confident (3) No Yes No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 34 9000 5000 2000 2000 0 0 5000 5000 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 2000 2000 0 20 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 9000 0 0 2000 7000 24 0 0 0 0 0 0 0 0 0 0 0 0 0 24 2 17.9305305 17.9305305 4768 Yes No No Yes No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes No Yes Yes Yes No Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No No No No No No No No No No Yes No Yes Yes No No No No No No No Yes Yes Yes No Yes Yes Yes Yes No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No Yes No No No No No No No 100+ 31 to 40 3 11 to 20 11 to 20 31 to 40 100+ 100+ Most days (365) Most days (365) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 50% to 74% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) 31 to 40 11 to 20 11 to 20 2-3 times a week (130) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 25% to 49% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 31 to 40 21 to 30 11 to 20 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 1 to 10 100+ 100+ 51 to 100 21 to 30 41 to 50 1 to 10 1 to 10 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 50% to 74% 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 50% to 74% 50% to 74% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) 41 to 50 11 to 20 20 to 30 11 to 20 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None 100% 1 to 10 100% 1 to 10 100% 100% 1 to 10 51 to 100 41 to 50 21 to 30 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% 25% to 49% None None 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 100+ 100+ 100+ 31 to 40 100+ 31 to 40 21 to 30 1 to 10 11 to 20 11 to 20 11 to 20 50% to 74% 11 to 20 50% to 74% 1 to 10 25% to 49% 1 to 10 75% to 99% 1 to 10 75% to 99% 1 to 10 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Strongly disagree (-4) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes Yes No Yes No 4 4 Yes No No Phone Urban England London South Indian Minority Ethnic Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 19700 2300 1600 1900 3400 10500 3100 1800 1300 3500 2300 1200 18000 9000 2500 4500 1000 500 500 5000 1300 2300 1400 6600 4300 2300 5 7 2 5 2 7 3 3 1 0 0 0 1 2 0 3 1 4 4 5 1 3 1 4 3 3 1 1 0 4 2 2 2 2 1 3 1 2 0 1 1 0 1 1 2 0 1 1 0 1 1 1 0 0 0 0 0 1 2 1 2 1 3 75 50 25 100 100 60 40 40 100 100 100 100 0 0 100 33.3333321 66.6666641 33.3333321 33.3333321 50 66.6666641 0 100 100 100 100 100 42.8571434 0 0 100 46500 17100 10600 4000 10900 3900 28 7 11 18 12 66.6666641 54.5454559 5 27.7777786 6 5 94.4444427 83.3333359 1 10 4 18.6235714 18.6235714 4770 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 51 to 100 21 to 30 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 Have not spent anything Have not spent anything 51 to 100 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No Yes Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time Any Yes No Yes Yes No Yes Yes 4 4 Yes No No Phone Urban Scotland Scotland North Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 32 0 0 0 0 0 0 1000 1000 0 3000 3000 0 9500 6000 2500 1000 0 0 0 0 0 0 0 0 0 0 0 2 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11000 5000 0 0 6000 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 4 17.1963615 17.1963615 4786 Yes Yes Yes Yes Yes Yes Yes No No Yes Yes Yes No Yes No No No Yes No No No No Yes No No No No No No Yes Yes No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes No No No No Yes No No No No Yes Yes No Yes Yes Yes Yes Yes No No No Yes Yes No No Yes Yes Yes Yes No No No Yes Yes No No No No Yes No No No No Yes No Yes Yes No Yes No No Yes No Yes Yes No Yes Yes No Yes No Yes Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) Less often (6) 101 to 200 1 to 10 51 to 100 101 to 200 None None None None 101 to 200 100% 100% 1001+ 1 to 10 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 51 to 100 41 to 50 41 to 50 Have not spent anything 11 to 20 Have not spent anything 1 to 10 Have not spent anything Every 2-3 weeks (30) About once a week (52) 11 to 20 1 to 10 11 to 20 11 to 20 11 to 20 75% to 99% 25% to 49% None None 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 11 to 20 Have not spent anything About once a month (12) Most days (365) 201 to 500 1 to 10 101 to 200 201 to 500 101 to 200 75% to 99% None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 100+ Have not spent anything 1 to 10 41 to 50 Have not spent anything 201 to 500 11 to 20 201 to 500 201 to 500 201 to 500 50% to 74% 1 to 10 1% to 24% None None 101 to 200 75% to 99% 101 to 200 75% to 99% 1 to 10 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Yes Yes No Yes Yes Yes No Yes No No No No No No No Yes No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No No No Yes No Yes 5+ 5+ Yes Yes No Phone Urban England East Midlands Midlands Bangladeshi Minority Ethnic Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 30 0 0 0 0 0 0 10000 10000 0 0 0 0 8000 5000 0 2000 0 1000 0 2000 0 2000 0 0 0 0 103 4 1 20 201 3 3 0 1 5 1 2 100 0 0 12 200 1 103 0 1 17 201 3 0 0 0 15 200 1 0 0 0 8 0 0 0 0 0 0 0 0 2 103 0 0 2 1 2 3000 1 1 0 0 0 0 0 0 4 0 3 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 88.2352905 44.4444427 0 11.7647057 100 100 99.5024872 0 0 100 100 33.3333321 0 0 100 100 20000 14000 0 1000 5000 0 332 12 313 325 216 66.4615402 3.58744383 0 0 109 108 99.6923065 99.0825653 1 7 5 13.2410421 13.2410421 4788 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 31 to 40 31 to 40 None None None None None None 31 to 40 100% 31 to 40 100% None 1 to 10 Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No No No No No Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No No Yes 2 2 Yes No No Phone Urban England London South Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 31 0 0 0 0 0 0 6000 6000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 1 30 0 0 0 0 0 0 0 0 0 0 1 30 0 0 0 0 1 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 30 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 6000 6000 0 0 0 0 34 0 31 31 0 0 0 0 0 31 31 100 100 0 3 2 12.5546675 12.5546675 4794 Yes Yes Yes Yes No Yes No No No Yes Yes Yes Yes Yes No No No No No No Yes No No No No No Yes No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No Yes No No No Yes Yes No Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes No Yes Yes Yes No Yes No No No Yes Yes No No Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No No No No 3 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 About once a week (52) About once a week (52) About once a month (12) 101 to 200 1 to 10 51 to 100 101 to 200 51 to 100 75% to 99% 25% to 49% 11 to 20 1% to 24% None None 75% to 99% 1001+ 101 to 200 101 to 200 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 75% to 99% 75% to 99% 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Most days (365) Most days (365) Most days (365) 51 to 100 41 to 50 31 to 40 51 to 100 31 to 40 25% to 49% 25% to 49% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 50% to 74% 11 to 20 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) 11 to 20 Have not spent anything Have not spent anything 11 to 20 Most days (365) Most days (365) About once a month (12) 101 to 200 51 to 100 51 to 100 101 to 200 101 to 200 75% to 99% 1% to 24% 11 to 20 1% to 24% None None 75% to 99% 1 to 10 11 to 20 1 to 10 1 to 10 About once a month (12) About once a month (12) 31 to 40 21 to 30 21 to 30 21 to 30 75% to 99% 100% None None None None 75% to 99% 21 to 30 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 1 to 10 11 to 20 11 to 20 11 to 20 11 to 20 201 to 500 101 to 200 101 to 200 201 to 500 201 to 500 75% to 99% 51 to 100 25% to 49% 41 to 50 1% to 24% 11 to 20 1% to 24% 11 to 20 75% to 99% 201 to 500 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No No No No Yes Yes Yes No No Yes Yes No No Yes Yes Yes Yes Yes No Yes No No No No No Yes No No No No No No Yes No No No Yes No No No No No No No Yes Yes Yes No No Yes No Yes No Yes Yes Yes Yes Yes Yes No No No No No No No No No No Yes No Yes No No No No No No No Yes Yes No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England South East South White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes No Yes No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 3000 1500 0 0 0 1500 0 0 0 0 0 0 1500 0 0 0 0 1500 0 1500 0 0 1500 1250 1000 250 110 0 10 90 120 35 10 0 10 50 60 30 100 0 0 40 60 0 110 0 10 90 120 30 100 0 0 40 119 29 25 0 0 10 10 34 20 0 0 10 20 0 5 0 0 9 5 0 0 5459 150 150 1 2 20 1 30 0 0 0 0 0 5 90.9090881 25 18.181818 0 90.9090881 0 0 0 0 0 0 0 0 90 90 44.4444427 25 11.1111107 5.55555534 10 50 99.1666641 8.40336132 16.666666 0 99.1666641 96.6666641 100 0 0 96.6666641 7750 1000 1750 2000 1500 1500 365 160 200 360 288 80 26.9624577 50 13.8888893 72 14 83.8888855 19.4444447 204 5 1 17.9305305 17.9305305 4795 Yes Yes Yes Yes No Yes No No Yes No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No Yes No Yes Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 31 to 40 31 to 40 31 to 40 None None None None 31 to 40 100% 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 31 to 40 31 to 40 None None None None None None 31 to 40 100% 31 to 40 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Strongly disagree (-4) Yes No No Yes No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England London South White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 40 0 0 0 0 2 0 0 0 0 0 0 40 0 0 0 0 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 42 0 40 40 0 0 0 0 0 40 40 100 100 0 2 2 17.9305305 17.9305305 4798 Yes No Yes Yes No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No Yes No No Yes No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No No No No No 100+ 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 51 to 100 51 to 100 Most days (365) 21 to 30 1 to 10 1 to 10 None None 25% to 49% None None 1 to 10 100% 100% 11 to 20 Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) 11 to 20 1 to 10 1 to 10 2-3 times a week (130) 31 to 40 11 to 20 11 to 20 1 to 10 1% to 24% 25% to 49% 1 to 10 1% to 24% 1 to 10 25% to 49% 50% to 74% 11 to 20 11 to 20 11 to 20 Have not spent anything 1 to 10 25% to 49% 1 to 10 100+ 41 to 50 41 to 50 Have not spent anything 100+ Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) Most days (365) 31 to 40 1 to 10 1 to 10 11 to 20 None None None None None None None None None None 1 to 10 11 to 20 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 100+ Have not spent anything 100+ 31 to 40 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 25% to 49% 1 to 10 100+ 100+ 51 to 100 20 to 30 51 to 100 11 to 20 101 to 200 1 to 10 31 to 40 41 to 50 1 to 10 1% to 24% 11 to 20 25% to 49% 1 to 10 1% to 24% 11 to 20 25% to 49% 11 to 20 25% to 49% 1 to 10 51 to 100 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) No Yes No No Yes No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England South West South White British White No Yes No No No Yes No Yes Yes No No No Yes No Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 32 14000 1000 1000 2000 1000 9000 2000 1000 1000 2000 2000 0 34500 4500 0 30000 0 0 0 34000 0 30000 4000 3000 3000 0 25 32 4 37 2 4 0 0 0 10 0 0 10 20 0 7 2 0 10 20 0 17 2 0 0 4 0 0 2 0 5 7 1 0 2 1 0 1 0 0 0 0 0 10 7 0 0 0 0 0 0 0 0 0 1 0 0 15 12 4 20 0 4 0 33.3333321 0 100 100 20 43.75 5 43.75 55 0 25 0 0 0 0 0 0 0 0 0 100 100 0 0 100 0 25 0 0 0 87500 68000 6000 3000 8500 2000 104 10 39 49 6 12.2448978 26.2295074 1 2.04081631 43 17 46.9387741 39.5348854 1 55 1 14.5680799 14.5680799 4801 Yes No No No No Yes No No No No No Yes No Yes No No No No Yes No No No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes No Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes Yes No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Less often (6) 31 to 40 11 to 20 11 to 20 11 to 20 100% None None None 100% 11 to 20 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 41 to 50 1 to 10 1 to 10 Have not spent anything 20 to 30 Have not spent anything 41 to 50 1 to 10 21 to 30 21 to 30 11 to 20 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Don't know Don't know Strongly agree (4) Don't know Don't know Don't know Slightly disagree (-2) Don't know Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No Yes No Yes No No No Yes No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 2000 0 0 1000 1000 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 6 3 0 0 0 0 1 0 0 20 0 0 5 3 0 20 0 0 6 3 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 3 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 5000 1000 1000 0 3000 0 49 1 28 29 20 68.9655151 0 0 0 9 9 100 100 0 20 1 18.6235714 18.6235714 4802 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 21 to 30 21 to 30 21 to 30 None None 21 to 30 100% 21 to 30 100% 100% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 21 to 30 100% 21 to 30 100% None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 No No Yes Phone Urban England London South Chinese Minority Ethnic No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 30 30 0 0 0 30 100 30 30 100 100 0 0 1 17.9305305 17.9305305 4818 Yes Yes Yes Yes No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No No No No No Yes No Yes No Yes Yes Yes No Yes No Yes No No No No No Yes No Yes No No No No No 51 to 100 11 to 20 Have not spent anything 11 to 20 3 1 to 10 3 3 2-3 times a week (130) 51 to 100 41 to 50 41 to 50 31 to 40 75% to 99% None 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 100+ 51 to 100 11 to 20 Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 1 to 10 1 to 10 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% None None 100% 1 to 10 51 to 100 11 to 20 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 Have not spent anything Most days (365) 21 to 30 11 to 20 11 to 20 11 to 20 100% None None None None None 100% 1 to 10 Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% 1% to 24% None None 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 31 to 40 11 to 20 11 to 20 11 to 20 101 to 200 1 to 10 51 to 100 51 to 100 51 to 100 75% to 99% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 11 to 20 Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) No Yes Yes Yes No Yes No No No No No No No Yes Yes No Yes No Yes No No No No No No No No No Yes Yes Yes No No No Yes Yes No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England North West North White British White No Yes No No Yes No Yes Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 9000 0 2000 3000 1000 3000 12000 10000 2000 1000 1000 0 5599 2000 0 2000 1000 599 0 1000 0 1000 0 1000 1000 0 54 6 3 25 20 2 0 0 0 0 10 0 50 4 2 20 10 0 50 4 2 20 20 0 40 4 2 20 20 0 0 0 2 0 2 0 10 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 1 5 0 2 80 0 20 100 100 100 0 0 0 100 100 66.6666641 0 0 100 100 0 0 0 0 100 100 10 0 0 100 0 0 0 0 0 27599 18000 4000 1599 2000 2000 110 10 86 96 86 89.5833359 4 10 10.416667 10 10 100 100 0 14 2 16.6998844 16.6998844 4820 Yes Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No Yes No No No No No No No 41 to 50 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 About once a week (52) Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) 20 to 30 20 to 30 Have not spent anything 1 to 10 50% to 74% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 51 to 100 20 to 30 20 to 30 Have not spent anything 1 to 10 75% to 99% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 75% to 99% 1 to 10 100+ 51 to 100 1 to 10 1 to 10 1 to 10 11 to 20 41 to 50 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 31 to 40 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% 1 to 10 31 to 40 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No No No Yes Yes Yes 4 4 Yes No No Phone Urban England South West South White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 4230 606 606 606 606 1818 2587 2587 0 599 599 0 1515 505 505 505 0 0 0 5374 2587 2787 0 607 607 0 18 7 5 5 7 6 6 0 0 0 0 0 6 0 0 0 0 0 12 0 0 0 0 0 6 0 0 0 0 0 6 4 5 5 6 5 6 0 0 0 0 0 0 6 0 0 0 0 0 6 6 6 0 0 0 0 0 6 7 5 5 7 6 50 50 50 100 100 0 57.1428566 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 85.7142868 0 0 0 0 83.3333359 0 0 0 10620 7691 606 606 505 1212 48 6 6 12 6 50 73.8095245 6 50 6 6 100 100 6 36 4 18.6235714 18.6235714 4829 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No Yes No No No No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No Yes No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban Northern Ireland Northern Ireland North White Irish White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 350 0 0 0 0 0 350 0 0 0 0 1000 1000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1350 1000 0 0 350 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 13.2465572 13.2465572 4851 Yes No Yes No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No Yes No No No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes Yes No No No Yes No No No No No Yes Yes Yes Yes Yes No Yes No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 800 800 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 10 0 0 0 0 0 10 0 0 0 0 3 0 0 0 0 0 3 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 800 0 0 0 800 0 13 10 3 13 0 0 0 0 0 13 13 100 100 0 0 2 17.3453598 17.3453598 4854 Yes No No Yes No Yes No No No No No No No Yes No No No Yes No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) No Yes No No No No No Yes Yes No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No No Yes 4 4 Yes No No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 32 0 0 0 0 0 0 1500 1500 0 0 0 0 2000 0 0 2000 0 0 0 2000 0 2000 0 1000 1000 0 0 1 0 2 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6500 6500 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 4 16.9271107 16.9271107 4856 No No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes No No Yes Yes No No No No No No No No Once a day (365) No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No 1 to 10 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 31 to 40 20 to 30 Have not spent anything Have not spent anything 1 to 10 1 to 10 11 to 20 1 to 10 75% to 99% Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes No No Yes No 4 4 No Yes No Phone Urban England London South White Irish White No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 32 500 0 200 300 0 0 400 400 0 400 400 0 1600 1000 200 400 0 0 0 500 300 200 0 700 700 0 1 2 1 1 2 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 1 2 4 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 3600 2400 0 0 1000 200 11 0 0 0 0 0 81.8181839 0 0 0 0 0 0 0 11 4 17.9305305 17.9305305 4864 Yes Yes No No No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None 21 to 30 25% to 49% 51 to 100 100% 100% Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None 1 to 10 100% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 51 to 100 41 to 50 41 to 50 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None None 11 to 20 100% 11 to 20 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 201 to 500 201 to 500 201 to 500 None None None None 201 to 500 100% 100% 21 to 30 21 to 30 Have not spent anything 21 to 30 None 21 to 30 100+ 51 to 100 Have not spent anything Have not spent anything 41 to 50 Have not spent anything 201 to 500 201 to 500 201 to 500 1 to 10 None None None 21 to 30 1% to 24% 201 to 500 100% 201 to 500 100% None 21 to 30 Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes No Yes No No Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No Yes Yes No No Yes Yes Yes Yes No No Yes Yes No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England South West South White British White No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 25 0 0 0 0 0 0 2599 2599 0 0 0 0 5557 4557 0 1000 0 0 0 0 0 0 0 3000 3000 0 59 4 1 16 230 25 0 0 0 0 0 0 59 2 1 14 230 0 59 2 1 14 230 0 0 0 1 0 0 0 0 0 0 0 0 0 24 2 0 0 0 0 14 59 2 0 14 230 0 0 0 0 0 0 0 0 0 0 2 0 2 0 25 0 0 40.6779671 100 100 0 0 100 100 100 100 0 0 0 100 0 0 0 100 100 100 0 0 0 100 100 0 0 0 0 0 11156 6599 0 0 4557 0 335 0 306 306 1 0.326797396 0 26 8.49673176 305 305 100 100 0 29 2 18.6235714 18.6235714 4866 Yes No No Yes No Yes No No No No No Yes No Yes No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 1% to 24% None None None Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No Yes No No No No No No No Yes No Yes Yes No No No No Yes No No No Yes No No No No No Slightly confident (3) No No No No No No No No Yes No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England East of England Midlands Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 32 1000 0 0 1000 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 1 0 0 0 0 5 0 0 0 0 0 0 1 0 0 0 0 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 7 5 1 6 0 0 0 0 0 6 0 0 0 0 1 3 16.9271107 16.9271107 4869 Yes No No No No No No No No Yes No Yes No Yes No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Once a day (365) Yes No No Yes No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 100+ 100+ 100+ 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 51 to 100 1 to 10 21 to 30 31 to 40 None None 1% to 24% 1 to 10 25% to 49% 31 to 40 100% 100% 41 to 50 Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 41 to 50 Have not spent anything Have not spent anything 20 to 30 100+ 51 to 100 11 to 20 21 to 30 41 to 50 None None 1 to 10 1% to 24% 1 to 10 1% to 24% 41 to 50 100% 41 to 50 100% None 51 to 100 Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No No Yes Yes No Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 1 1 No Yes No Phone Rural Scotland Scotland North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 28 23000 20000 1000 2000 0 0 0 0 0 0 0 0 5000 3000 0 2000 0 0 0 0 0 0 0 500 500 0 90 0 1 6 0 3 10 0 1 0 0 0 30 0 0 0 0 0 40 0 1 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 40 0 1 0 0 0 0 0 0 0 0 0 0 0 50 0 0 6 0 3 0 20 25 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28500 4500 0 0 3000 21000 100 11 30 41 0 0 16.949152 10 24.3902435 41 41 100 100 0 59 1 13.4516592 13.4516592 4871 No Yes No No No No No No No Yes No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 51 to 100 51 to 100 3 41 to 50 11 to 20 Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 100+ 100+ Have not spent anything 1 to 10 50% to 74% 1 to 10 11 to 20 11 to 20 Have not spent anything 21 to 30 1% to 24% 21 to 30 100+ 51 to 100 21 to 30 41 to 50 31 to 40 Have not spent anything Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 50% to 74% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 50% to 74% 1 to 10 100+ 100+ Have not spent anything Have not spent anything 20 to 30 51 to 100 31 to 40 1 to 10 1% to 24% Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No No No No No No Yes No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 5+ 5+ No Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 25 7700 2300 4200 1200 0 0 19023 19023 0 1030 1030 0 10200 2300 4500 3400 0 0 0 406 203 203 0 232 232 0 2 2 23 4 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 23 4 2 2 0 50 0 0 0 0 50 0 0 0 0 4.347826 0 0 0 0 50 0 0 0 0 0 50 0 0 0 0 50 0 0 0 33888 25088 0 0 2300 6500 35 0 0 0 0 0 20 0 0 0 0 0 0 0 35 5 14.5680799 14.5680799 4875 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 100+ 100+ 100+ Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 41 to 50 1 to 10 1 to 10 1 to 10 100% None None None 100% 31 to 40 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 11 to 20 Have not spent anything Have not spent anything Have not spent anything 100+ 41 to 50 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 31 to 40 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No No No No No No No Yes Yes No No No No Yes Yes Yes No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Urban England South East South White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 33 13500 12000 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13500 1500 0 0 0 12000 45 5 0 5 5 100 0 0 0 0 0 100 0 0 40 3 17.9305305 17.9305305 4877 Yes No No No No No No No No Yes No No No Yes No No No No Yes No Yes No Yes No No No No No No No No No No No No Yes No No No No No No Several times a day (730) No No Yes Yes Yes Yes No No No No No No Yes Yes No No No Yes No No No No Yes Yes No Yes Yes Yes No No No No No No No Yes No Yes Yes No No No No No No No No No No No Yes No No No No Yes Yes No Yes Yes No No No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None None None 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) No Yes Yes No No No No No No No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Rural England East of England Midlands White British White No No Yes No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes No Yes No No No No No No No No No No Yes No Yes No No Yes No Yes No No Yes Yes No Yes No Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 27 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 5 0 4 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 4 3 0 3 0 0 0 0 0 3 0 0 0 10 1 1 13.2410421 13.2410421 4880 Yes No No No No Yes Yes No No Yes No Yes No Yes No Yes No No No No Yes No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No Yes No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban England Yorkshire and The Humber North Caribbean Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 600 0 300 300 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 900 900 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 11.6929893 11.6929893 4882 Yes No No No No Yes Yes No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Don't know Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 4 4 Yes No No Phone Urban England East Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 11.4110355 11.4110355 4885 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No No No No No Yes Yes No No No No No No No No Yes Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes Yes Yes Yes No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None 11 to 20 100% 100% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) Most days (365) 31 to 40 1 to 10 21 to 30 31 to 40 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 41 to 50 11 to 20 31 to 40 41 to 50 None None None None None None 11 to 20 25% to 49% 11 to 20 25% to 49% None 1 to 10 Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Don't know Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No Yes No No No No No No No No No Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes No Yes Yes No 5+ 5+ Yes Yes No Phone Urban England South West South White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 29 0 0 0 0 0 0 1000 1000 0 0 0 0 425 425 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 11 33 0 0 0 0 10 3 0 0 0 0 1 30 0 0 0 0 11 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 1425 1000 0 0 425 0 46 13 31 44 0 0 0 0 0 44 11 25 25 0 2 5 17.9305305 17.9305305 4889 Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No No Yes No No Yes No No No No No No Yes No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes No Yes Yes Yes Yes Yes No No No Yes Yes No Yes Yes Yes Yes Yes No No No Yes Yes No No No Yes Yes No No No No Yes Yes No Yes Yes Yes Yes Yes No No No Yes Yes No Yes Yes Yes Yes Yes No No No Yes Yes No No No Yes Yes No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No 100+ 100+ 100+ 3 11 to 20 Have not spent anything 51 to 100 51 to 100 Most days (365) Most days (365) Most days (365) 501 to 1000 101 to 200 201 to 500 501 to 1000 51 to 100 1% to 24% 100% 501 to 1000 75% to 99% None None 1% to 24% 1001+ 201 to 500 201 to 500 11 to 20 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 51 to 100 41 to 50 41 to 50 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 51 to 100 41 to 50 1 to 10 51 to 100 None None 100% None None 11 to 20 25% to 49% None None None 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) Most days (365) 31 to 40 21 to 30 1 to 10 31 to 40 None None None None None None None 1 to 10 51 to 100 51 to 100 Have not spent anything Most days (365) Most days (365) 201 to 500 201 to 500 51 to 100 201 to 500 None None 100% 41 to 50 1% to 24% None None None 41 to 50 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 100+ Have not spent anything 11 to 20 41 to 50 100+ 1001+ 501 to 1000 501 to 1000 1001+ 51 to 100 1% to 24% 101 to 200 100% 501 to 1000 50% to 74% None None None 1% to 24% 501 to 1000 51 to 100 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Yes Yes Yes Yes No No No Yes No No No No No Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No No Yes No No Yes 4 4 Yes Yes No Phone Urban Northern Ireland Northern Ireland North White Irish White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 32 26000 15000 3000 2000 0 6000 0 0 0 0 0 0 7000 5000 0 2000 0 0 0 0 0 0 0 10000 10000 0 715 0 10 57 35 400 200 0 5 50 25 250 500 0 5 5 10 100 700 0 10 55 35 350 100 0 0 0 0 0 115 0 0 2 0 50 600 0 0 0 0 50 20 0 0 0 0 0 0 10000 500 500 0 0 0 10 0 15 0 0 2 0 50 14.2857141 100 85.7142868 0 14.2857141 0 0 0 0 0 0 0 0 0 0 0 100 0 36.363636 0 0 0 0 0 0 0 0 100 14.2857141 0 0 39000 14000 0 2000 5000 18000 1217 530 620 1150 100 8.69565201 100 650 56.52174 1050 0 8.69565201 0 510 67 4 12.7536097 12.7536097 4890 Yes No No No Yes Yes No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No No Yes Yes No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 Most days (365) Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 50% to 74% 1 to 10 1% to 24% 1 to 10 25% to 49% 25% to 49% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 50% to 74% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 20 to 30 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 21 to 30 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 11 to 20 75% to 99% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 11 to 20 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 4 4 Yes Yes No Phone Urban England North West North Indian Minority Ethnic Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 1600 100 100 100 100 1200 200 200 0 1000 1000 0 400 100 100 100 0 0 100 400 200 200 0 200 200 0 15 2 1 3 2 2 5 0 0 0 0 0 5 0 0 0 0 0 10 0 0 0 0 0 1 0 0 0 0 0 3 2 1 2 2 2 1 0 0 0 0 0 0 3 0 0 0 0 0 5 5 5 0 0 0 0 0 5 2 1 3 2 2 10 50 10 33.3333321 40 0 100 0 0 0 0 100 0 0 0 0 66.6666641 0 0 0 0 0 100 0 0 0 0 100 0 0 0 2700 1800 100 400 200 200 25 5 5 10 1 10 75 1 10 9 3 40 33.3333321 5 15 4 16.6998844 16.6998844 4891 Yes No Yes No No Yes No No No No No No No Yes Yes No No No No Yes Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Yes Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No Yes No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 32 1100 0 0 0 500 600 0 0 0 0 0 0 500 0 0 500 0 0 0 500 0 500 0 400 400 0 5 0 0 1 0 1 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2100 1400 500 200 0 0 7 5 0 5 5 100 0 0 0 0 0 100 0 0 2 2 16.9271107 16.9271107 4893 Yes No Yes No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 Have not spent anything Have not spent anything Have not spent anything 31 to 40 21 to 30 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) No Yes No Yes No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes No Yes No No No No No Yes No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England East of England Midlands White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 31 4000 4000 0 0 0 0 2000 2000 0 0 0 0 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 10 1 0 4 7 0 0 0 0 0 0 0 10 0 0 1 7 0 10 0 0 1 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 1 7 0 0 0 0 0 0 0 0 0 0 1 0 3 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 7000 3000 0 0 0 4000 22 0 18 18 0 0 0 0 0 18 18 100 100 0 4 4 16.2971992 16.2971992 4894 Yes No Yes Yes No Yes Yes No Yes No No No No Yes Yes Yes No Yes No Yes Yes No No No No No No No No Yes No No Yes Yes No No No No No No No No Once a day (365) Yes Yes Yes Yes No No No Yes No No No No No Yes No No No No No No No No Yes Yes No No Yes No Yes No No No No Yes No Yes Yes No No No No No No No No No Yes No No No No No No No No Yes Yes No No Yes No Yes No No No No Yes Yes Yes No No Yes No No Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes No Yes Yes No 100+ 100+ 100+ 3 3 51 to 100 11 to 20 11 to 20 About once a week (52) About once a week (52) 51 to 100 21 to 30 21 to 30 21 to 30 75% to 99% 25% to 49% 11 to 20 25% to 49% 1 to 10 75% to 99% 75% to 99% 201 to 500 51 to 100 51 to 100 31 to 40 Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 100+ 100+ 51 to 100 About once a week (52) Every 2-3 weeks (30) 21 to 30 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% 50% to 74% 1 to 10 1% to 24% 11 to 20 75% to 99% 75% to 99% 1 to 10 100+ 51 to 100 41 to 50 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 25% to 49% 1 to 10 50% to 74% 75% to 99% 1 to 10 100+ 51 to 100 41 to 50 11 to 20 21 to 30 Have not spent anything Have not spent anything 11 to 20 About once a week (52) 1 to 10 None 1 to 10 1 to 10 20 to 30 11 to 20 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 25% to 49% 1 to 10 100+ 100+ 100+ 1 to 10 51 to 100 100+ 101 to 200 41 to 50 11 to 20 51 to 100 21 to 30 25% to 49% 21 to 30 25% to 49% 11 to 20 1% to 24% 21 to 30 75% to 99% 21 to 30 75% to 99% 51 to 100 41 to 50 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No Yes No No Yes Yes Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No No No No No No No No No No Yes No No Yes No Yes No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No Yes No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No No No Yes Yes No 4 4 Yes Yes No Phone Urban England East of England Midlands Any other white White Yes No Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes No No No Yes No Yes Yes No Yes No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 32 32800 15000 3000 3000 10000 1800 22000 15000 7000 12000 7500 4500 12000 5000 2000 3000 0 0 2000 3000 2000 1000 0 10000 10000 0 64 28 6 1 1 3 30 10 4 0 0 0 0 15 0 0 0 0 30 25 4 0 0 0 23 3 2 0 0 0 23 3 2 0 1 1 12 1 1 0 0 0 0 6 20 1 0 0 0 500 54 54 0 0 2 0 0 34 3 2 1 1 3 76.6666641 40.3508759 40 85.7142868 96.6666641 12 50 4 90.9090881 92 50 50 25 50 75 0 0 0 0 0 0 0 100 0 0 0 0 33.3333321 0 0 0 86600 39500 21500 600 7000 18000 103 44 15 59 28 47.4576263 41.6666679 14 23.7288132 31 27 93.2203369 87.0967712 56 44 4 16.2971992 16.2971992 4903 Yes Yes Yes Yes Yes Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes No No No No No No Several times a day (730) Yes Yes No No Yes Yes No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes Yes No Yes No No 31 to 40 1 to 10 Have not spent anything 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 101 to 200 11 to 20 51 to 100 101 to 200 101 to 200 100% 25% to 49% None None 100% 21 to 30 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 11 to 20 11 to 20 41 to 50 Have not spent anything Have not spent anything 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 None None 1% to 24% 1 to 10 100% None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 25% to 49% 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 1 to 10 Have not spent anything 20 to 30 1 to 10 101 to 200 11 to 20 101 to 200 101 to 200 101 to 200 75% to 99% 51 to 100 25% to 49% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 41 to 50 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Yes Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban Northern Ireland Northern Ireland North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 3500 0 1000 2000 500 0 5000 5000 0 0 0 0 10000 2000 2000 5000 0 0 1000 0 0 0 0 2000 2000 0 145 2 0 8 6 2 15 0 0 0 0 0 100 0 0 1 6 0 115 0 0 1 6 0 115 0 0 0 0 0 70 0 0 1 0 0 0 0 0 1 2 0 0 0 0 0 1 6 0 0 0 0 0 0 0 0 0 30 2 0 7 0 2 100 48.2758636 0 0 100 0 0 0 0 0 0 0 0 0 0 0 14.2857141 100 0 100 100 0 0 33.3333321 100 100 0 0 0 0 0 18500 14000 500 0 3000 1000 163 15 107 122 115 94.2622986 45.5128212 3 2.45901632 7 7 100 100 0 41 4 12.7536097 12.7536097 4905 Yes Yes No Yes No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban Wales Wales Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 3400 3400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3400 3400 0 0 0 0 11 5 5 10 10 100 0 0 0 0 0 100 0 0 1 3 16.2971992 16.2971992 4906 No Yes No No No Yes No No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 25 0 0 0 0 0 0 0 0 0 0 0 0 900 0 900 0 0 0 0 300 300 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 11.6929893 11.6929893 4907 No Yes No Yes No No No No Yes Yes No No No Yes Yes Yes No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes No No No Yes Yes No No No Yes No No Yes Yes No Yes No No No No Yes Yes No No Yes Yes Yes Yes No No No Yes Yes Yes No No No Yes Yes No No No Yes No No Yes Yes No Yes No No No No Yes Yes No No Yes Yes No No No No No No Yes No No No No No No Yes Yes No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Less often (6) Less often (6) 21 to 30 11 to 20 1 to 10 21 to 30 None None None None None None None 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 31 to 40 31 to 40 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 100+ 100+ 51 to 100 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None None 1 to 10 50% to 74% 75% to 99% 1 to 10 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) None 1 to 10 11 to 20 1 to 10 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% None None 100% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) 100+ 51 to 100 1 to 10 Have not spent anything 51 to 100 Have not spent anything 31 to 40 11 to 20 11 to 20 21 to 30 1 to 10 1% to 24% 1 to 10 1% to 24% None None 1 to 10 1% to 24% 1 to 10 1% to 24% 11 to 20 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time Any Yes No No Yes No Yes No 5+ 5+ Yes No No Phone Urban England London South White & Black African Minority Ethnic Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes No No Yes Yes No No Yes No Yes No No Yes No Yes No No No Yes No Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 25 0 0 0 0 0 0 0 0 0 4000 4000 0 14000 10000 2000 2000 0 0 0 0 0 0 0 2000 1000 1000 22 1 2 6 0 3 12 1 0 0 0 1 10 0 1 4 0 0 22 1 1 4 0 1 0 0 1 2 0 1 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0 10 10 10 0 0 1 1 0 0 0 1 2 0 2 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 50 0 0 0 50 75 0 0 0 0 0 100 66.6666641 0 0 100 18000 7000 1000 0 10000 0 34 14 15 29 4 13.7931032 22.2222214 0 0 25 1 17.2413788 4 12 5 5 14.5680799 14.5680799 4914 Yes No No No No Yes Yes No Yes Yes Yes No No Yes No No No No Yes No No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes Yes No No Yes Yes No Yes No No No Yes Yes No No Yes Yes Yes No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No Yes No No No No No No No No No No Yes No Yes No No No No No Yes No Yes No No Yes Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) About once a week (52) 51 to 100 11 to 20 41 to 50 51 to 100 11 to 20 25% to 49% 25% to 49% None None 41 to 50 100% 100% 1001+ 201 to 500 201 to 500 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None 1 to 10 1% to 24% None None 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 1 to 10 Have not spent anything 1 to 10 Have not spent anything 51 to 100 11 to 20 51 to 100 51 to 100 11 to 20 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 51 to 100 100% 51 to 100 100% 201 to 500 1 to 10 Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes No No No No Yes No No No No No Yes Yes No Yes Yes Yes No No No Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 4 4 No Yes No Phone Urban England London South Any other Asian Minority Ethnic Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 27 800 0 0 0 800 0 0 0 0 1000 1000 0 1300 800 0 500 0 0 0 0 0 0 0 0 0 0 65 0 1 6 15 0 15 0 0 1 0 0 50 0 0 4 15 0 65 0 0 5 15 0 20 0 0 0 0 0 5 0 0 0 0 0 0 0 0 1 0 0 0 45 0 0 5 15 0 2500 500 500 0 0 0 0 0 0 0 1 1 0 0 30.7692299 25 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 20 0 100 100 0 0 0 100 100 0 0 0 0 0 3100 1500 800 0 800 0 87 16 69 85 20 23.5294113 22.727272 1 1.17647064 65 65 100 100 500 2 4 14.5680799 14.5680799 4917 Yes Yes No No Yes Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 100+ 100+ 100+ Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 About once a month (12) 31 to 40 21 to 30 21 to 30 21 to 30 100% None None None 100% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 1 to 10 Have not spent anything 1 to 10 11 to 20 100+ 41 to 50 21 to 30 1 to 10 31 to 40 21 to 30 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) No Yes Yes No No No No No No No No No No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rural England London South White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 21500 20000 0 600 0 900 0 0 0 0 0 0 1800 1800 0 0 0 0 0 0 0 0 0 300 300 0 40 0 0 0 8 2 30 0 0 0 0 0 0 0 0 0 8 0 30 0 0 0 8 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 10 0 0 0 0 2 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 23000 900 0 300 1800 20000 50 30 8 38 30 78.9473648 0 0 0 8 8 100 100 0 12 2 18.6235714 18.6235714 4918 Yes Yes No Yes No Yes No No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Don't know Slightly agree (2) Don't know Don't know Slightly agree (2) Don't know Don't know No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 34 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 500 0 0 0 0 0 0 0 1500 1500 0 0 0 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 2 18.6235714 18.6235714 4921 Yes Yes No No No Yes No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None None Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None 100% 1 to 10 50% to 74% 1 to 10 75% to 99% 75% to 99% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 None None 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 50% to 74% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time Any Yes No Yes No No Yes No 3 3 Yes Yes No Phone Urban England East Midlands Midlands White British White No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 2900 1400 1500 0 0 0 0 1500 1500 0 0 700 700 0 2 0 0 0 8 2 0 0 0 0 0 0 2 0 0 0 5 0 2 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 3 0 2 0 0 0 3 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 60 80 80 0 0 0 0 0 2100 700 0 0 1400 0 12 0 7 7 0 0 60 5 71.4285736 7 4 57.1428566 57.1428566 0 5 3 16.9271107 16.9271107 4923 Yes Yes No No No No No No No No No Yes No Yes Yes No No Yes No No Yes No No No No No No Yes No No No Yes Yes No No No No No No No No No Once a day (365) Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% 75% to 99% None None 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 31 to 40 21 to 30 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 1 to 10 Have not spent anything 31 to 40 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 1 to 10 75% to 99% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Don't know Slightly agree (2) Don't know Yes No No No No Yes No Yes No No No No No Yes No No Yes No No Yes No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Part time Any Yes No No Yes No No Yes 2 2 Yes Yes No Phone Urban England North East North White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 1800 0 0 1300 500 0 0 0 0 0 0 0 7800 4000 2800 1000 0 0 0 0 0 0 0 0 0 0 9 0 0 1 4 0 8 0 0 0 0 0 0 0 0 0 4 0 8 0 0 0 4 0 8 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 100 88.8888855 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 6800 2300 500 0 4000 0 14 8 4 12 8 66.6666641 80 0 0 4 4 100 100 0 2 2 17.3453598 17.3453598 4925 No Yes Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No Yes Yes No Yes Yes No No No No No No No No Once a day (365) No No Yes No No No No No No No No No Yes Yes Yes No Yes No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes No No No No Yes Yes No No Yes No No No No Yes No Yes No No No No 100+ 51 to 100 41 to 50 11 to 20 51 to 100 Have not spent anything Have not spent anything 1 to 10 75% to 99% 1 to 10 20 to 30 1 to 10 11 to 20 Most days (365) 2-3 times a week (130) Most days (365) 51 to 100 21 to 30 1 to 10 21 to 30 1 to 10 1% to 24% 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 1% to 24% 31 to 40 41 to 50 51 to 100 11 to 20 51 to 100 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% 25% to 49% 1 to 10 100% 100% 1 to 10 100+ 100+ 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 1 to 10 50% to 74% 1 to 10 31 to 40 1 to 10 20 to 30 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 50% to 74% 1 to 10 100+ 100+ 51 to 100 Have not spent anything 51 to 100 51 to 100 51 to 100 21 to 30 1 to 10 21 to 30 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 25% to 49% 31 to 40 51 to 100 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) No No No No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No Yes Yes No No No No Yes No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 5+ 5+ Yes Yes No Phone Urban England London South White British White No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 17000 5000 2000 10000 0 0 2200 1000 1200 8000 2000 6000 20400 7000 5400 7000 0 0 1000 3020 1000 2020 0 2000 2000 0 4 70 4 3 1 3 0 23 0 0 0 0 0 2 2 0 0 0 0 25 2 0 0 0 0 2 2 0 0 0 3 1 1 2 1 2 0 3 2 0 0 0 0 0 3 0 0 0 0 0 0 0 34 0 0 0 0 4 45 2 3 1 3 0 75 0 0 0 8 2.12765956 12 13.043478 20 100 25 100 0 100 0 66.6666641 0 0 0 0 0 100 0 0 0 0 66.6666641 0 0 0 46220 24020 7200 0 8000 7000 85 23 4 27 4 14.8148146 16.1290321 5 18.5185184 23 3 25.9259262 13.043478 34 58 5 12.5546675 12.5546675 4933 Yes Yes No Yes No Yes Yes No No No No No No Yes Yes No No No No No No No No No Yes No No No No Yes No No Yes Yes Yes No No No No No No No Several times a day (730) Yes No No No Yes No No Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No Yes No No No No Yes No No No Yes No No Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No Yes Yes No Yes No No Yes Yes Yes Yes No No Yes No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 3 3 About once a month (12) 2-3 times a week (130) 101 to 200 21 to 30 51 to 100 101 to 200 101 to 200 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% 21 to 30 1 to 10 11 to 20 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 20 to 30 20 to 30 1 to 10 1 to 10 Have not spent anything 101 to 200 31 to 40 101 to 200 101 to 200 101 to 200 75% to 99% None None 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 11 to 20 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 4 4 Yes No No Phone Urban England East of England Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 5000 0 0 2000 0 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 1000 3000 1000 2000 140 0 0 1 5 4 30 0 0 1 0 3 100 0 0 0 5 0 130 0 0 1 5 3 130 0 0 1 0 3 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 10 0 0 0 0 1 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 100 100 100 100 0 0 0 100 8000 3000 3000 1000 1000 0 150 34 105 139 134 96.4028778 0 5 3.59712219 5 5 100 100 0 11 4 16.9271107 16.9271107 4935 Yes Yes Yes No No Yes Yes No No No No Yes No Yes No No No No No Yes No No No No No No No No No Yes Yes No Yes Yes No Yes No No No No No No Several times a day (730) No No No Yes Yes Yes Yes Yes No No No No No No No Yes Yes Yes No No No No No No No No No No Yes No No No No No No No Yes Yes Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes Yes No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 11 to 20 None None None None None None 11 to 20 75% to 99% 11 to 20 75% to 99% None None Strongly agree (4) Don't know Strongly agree (4) Don't know Strongly disagree (-4) Don't know Don't know Don't know Yes Yes Yes Yes Yes No Yes Yes Yes No No No No Yes Yes Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Urban England West Midlands Midlands Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 3 1 10 0 0 6 3 1 10 0 0 0 0 0 0 0 0 6 3 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 20 20 0 20 0 0 0 0 0 20 16 80 80 0 0 2 16.2971992 16.2971992 4936 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 3 3 Less often (6) Less often (6) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% 100% 1 to 10 1% to 24% 1 to 10 1% to 24% 25% to 49% 1 to 10 1 to 10 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 21 to 30 21 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 11 to 20 11 to 20 1 to 10 31 to 40 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% 1 to 10 50% to 74% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England London South White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 4400 0 0 0 2000 2400 0 0 0 0 0 0 8200 3000 2400 2000 0 0 800 0 0 0 0 0 0 0 13 0 0 2 0 0 8 0 0 0 0 0 5 0 0 0 0 0 13 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 2 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 2 0 0 15.3846149 100 15.3846149 18.181818 30.7692299 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8600 2000 2000 800 3800 0 15 8 5 13 2 15.3846149 50 2 15.3846149 11 2 30.7692299 18.181818 2 2 2 17.9305305 17.9305305 4946 Yes Yes Yes Yes No Yes No No No Yes No Yes No Yes Yes No No No No Yes No No No No No No No No No Yes Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Yes Yes No Yes No No No No Yes No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 30 0 0 0 0 0 0 0 0 0 0 0 0 500 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 10 0 0 0 0 0 10 10 100 100 0 0 3 16.9271107 16.9271107 4956 Yes Yes Yes No No Yes Yes No No No No No No Yes Yes No No No No No Yes No Yes No No No No No No Yes No No No Yes No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 3 3 No Yes No Phone Rural England East of England Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 29 1900 0 0 0 1000 900 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 5 0 0 0 0 0 1 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1300 0 1000 300 0 0 6 5 1 6 6 100 0 0 0 0 0 100 0 0 0 3 16.9271107 16.9271107 4958 Yes No Yes No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes Yes No Yes No Yes Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) No No Yes No No No No Yes No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time Any Yes No No Yes Yes Yes Yes 4 4 Yes No No Phone Urban England North West North Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 11.6929893 11.6929893 4968 Yes Yes No No No Yes Yes No Yes No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes Yes Yes No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No No No No No 100+ 100+ 51 to 100 3 100+ 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) About once a week (52) 1001+ 1 to 10 1 to 10 11 to 20 1 to 10 75% to 99% 1% to 24% 1 to 10 1% to 24% 1 to 10 100% 100% 1001+ 1 to 10 1 to 10 501 to 1000 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 11 to 20 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 41 to 50 None 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 51 to 100 None 51 to 100 100+ 100+ 1 to 10 Have not spent anything 11 to 20 100+ 1001+ 1 to 10 1 to 10 11 to 20 1 to 10 75% to 99% 51 to 100 1% to 24% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% 1 to 10 1001+ Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No Yes No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England North West North White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 34 44000 10000 3000 30000 1000 0 0 0 0 0 0 0 5000 2000 0 3000 0 0 0 0 0 0 0 10000 10000 0 1011 0 0 50 0 100 5 0 0 0 0 0 6 0 0 0 0 0 11 0 0 0 0 0 9 0 0 0 0 0 90 0 0 0 0 0 2 0 0 0 0 0 0 2 0 0 0 0 0 10000 10 10 0 0 0 0 0 1000 0 0 50 0 100 81.8181839 8.91972256 18.181818 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59000 43000 1000 0 2000 13000 1161 5 6 11 9 81.8181839 7.76531506 2 18.181818 2 2 100 100 10 1150 1 16.6998844 16.6998844 4971 Yes Yes No No No Yes No No No Yes Yes No No Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Several times a day (730) Yes No No Yes Yes No Yes Yes No No No Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 1001+ 1001+ 501 to 1000 1001+ None None None None None None None Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1001+ 1001+ 501 to 1000 1001+ None None None None None None 1 to 10 None 1 to 10 None None None Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes No Yes Yes Yes No No Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes No No No Yes Yes No Yes No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No Yes No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Rural England North West North White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2700 0 3 6 5 0 2000 0 3 0 0 0 700 0 0 6 5 0 2700 0 3 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 60 60 0 0 0 0 0 0 0 0 0 0 0 2714 2003 711 2714 0 0 0 0 0 2714 6 0.221075907 0.221075907 0 0 3 13.5682125 13.5682125 4972 No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes No No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 14.5680799 14.5680799 4988 Yes No No No No Yes No No No Yes No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 21 to 30 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 11 to 20 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No No Yes No Yes No 3 3 Yes No No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 3500 3000 500 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 1 4 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4500 1500 0 0 3000 0 5 0 1 1 0 0 0 0 0 1 1 100 100 0 4 3 11.6929893 11.6929893 5002 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 51 to 100 51 to 100 51 to 100 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 1 to 10 Have not spent anything Have not spent anything Have not spent anything 51 to 100 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone England South West South Any other white White Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes CAWI Adults 29 7400 7000 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 150 150 0 0 500 500 0 1 0 1 0 1 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7900 700 0 0 0 7200 5 1 0 1 0 0 0 0 0 1 1 100 100 0 4 2 18.6235714 18.6235714 5004 Yes Yes No No No Yes Yes No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes Yes No Yes Yes No No No No No No No No Several times a day (730) Yes Yes No Yes Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No Yes Yes Yes No Yes No No No No No No Yes Yes No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No No Yes No No No No Yes No No Yes No No No No No No No 41 to 50 3 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) Every 2-3 weeks (30) 51 to 100 11 to 20 11 to 20 31 to 40 None None 1% to 24% 1 to 10 1% to 24% 31 to 40 75% to 99% 75% to 99% 1 to 10 1 to 10 1 to 10 51 to 100 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything About once a month (12) None 1 to 10 11 to 20 1 to 10 1 to 10 About once a week (52) 11 to 20 1 to 10 1 to 10 1 to 10 25% to 49% None None None 1 to 10 75% to 99% 75% to 99% 1 to 10 21 to 30 21 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 11 to 20 1 to 10 Have not spent anything 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 11 to 20 Have not spent anything 20 to 30 20 to 30 101 to 200 21 to 30 21 to 30 51 to 100 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 41 to 50 75% to 99% 41 to 50 75% to 99% 1 to 10 51 to 100 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes Yes No Yes Yes No No No No No No Yes Yes Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No Yes Yes No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England London South Indian Minority Ethnic Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No No Yes No No No No No No No No No No Yes No No No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 27 4200 2000 700 1000 500 0 0 0 0 1400 700 700 2600 2000 600 0 0 0 0 1100 600 0 500 1500 1500 0 100 0 12 7 4 4 20 0 10 0 0 0 20 0 0 7 3 0 40 0 10 7 3 0 0 0 3 0 0 0 8 0 0 0 0 0 5 0 0 1 0 0 2 35 0 6 7 0 0 6 4 4 5 0 0 0 0 60 0 2 0 1 4 0 13.333333 12.5 87.5 87.5 0 0 0 0 0 30 0 0 85.7142868 90 0 0 14.2857141 28.5714283 100 100 0 0 0 0 0 0 0 0 0 0 10100 3200 1700 0 2500 2700 127 30 30 60 3 5 11.4285717 6 10 57 48 85 84.2105255 9 67 2 18.6235714 18.6235714 5005 Yes Yes Yes No No Yes No No No Yes No Yes Yes No No No No No No No Yes No No No No No No No No Yes Yes Yes Yes No No No Yes No No No No No Several times a day (730) No Yes No No Yes No No Yes No No No No No No No No No No No No Yes No No Yes No No Yes No No Yes No No No No Yes No No Yes No No Yes No No No No No No No No No No No No Yes No No Yes No No Yes No No Yes No No No Yes No Yes Yes No No No No Yes No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 51 to 100 51 to 100 51 to 100 41 to 50 50% to 74% 100% None None None None 41 to 50 100% 100% 51 to 100 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Most days (365) Most days (365) 41 to 50 1 to 10 1 to 10 1 to 10 100% 100% 1 to 10 100% 100% 1 to 10 31 to 40 Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 101 to 200 101 to 200 101 to 200 51 to 100 50% to 74% 101 to 200 100% 1 to 10 1% to 24% 41 to 50 100% 41 to 50 100% 101 to 200 41 to 50 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes Yes Yes No No Yes No No No No No No No Yes No No Yes No No Yes No No No No No No No No Yes Yes No No No No Yes No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 5+ 5+ No Yes No Phone Urban England South East South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No Yes Yes No No Yes No Yes No No No Yes Yes No Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200 200 0 0 1 0 100 0 50 0 0 0 100 0 10 0 0 0 0 0 0 0 0 0 100 0 10 0 0 0 50 0 10 0 1 0 50 0 50 0 0 0 0 0 10 0 0 0 0 50 0 0 0 0 0 0 0 100 0 10 0 1 0 0 0 40 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 50 100 0 0 100 100 0 0 0 0 0 100 100 100 0 100 400 400 0 0 0 0 151 110 0 110 60 54.5454559 100 10 9.090909 50 50 100 100 110 41 5 17.9305305 17.9305305 5012 Yes Yes No No No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 11 to 20 Have not spent anything Have not spent anything Have not spent anything 41 to 50 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 4500 4500 0 0 0 0 0 0 0 1999 1999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6499 1999 0 0 0 4500 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 12.5546675 12.5546675 5013 Yes No Yes No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No Yes No No No No No No No No Yes Yes Yes No No Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No Yes Yes Yes No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Less often (6) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% 100% 1 to 10 25% to 49% 100% Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 51 to 100 51 to 100 1 to 10 Less often (6) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 100% None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 41 to 50 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 51 to 100 Have not spent anything 51 to 100 11 to 20 About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 31 to 40 Have not spent anything 51 to 100 Have not spent anything 21 to 30 1 to 10 11 to 20 21 to 30 11 to 20 50% to 74% 11 to 20 75% to 99% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Don't know Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Yes Yes Yes No No No No Yes No Yes No No No Yes Yes No Yes Yes Yes No No No No No No No No No Yes Yes Yes Yes No No No Yes No No No No No No No No No No Slightly confident (3) Yes No No No No No No No Yes No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 25 1500 0 0 0 1500 0 6799 6000 799 0 0 0 8000 5000 0 3000 0 0 0 7500 0 6000 1500 599 599 0 12 10 0 2 3 1 7 2 0 0 0 0 5 5 0 0 3 0 12 7 0 0 3 0 12 2 0 0 0 0 12 5 0 0 0 0 3 0 0 0 0 0 0 0 5 0 0 3 0 0 0 0 0 0 0 0 0 0 3 0 2 0 1 100 100 25 0 100 28.5714283 100 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 25898 15599 3799 0 6500 0 28 9 13 22 14 63.636364 85 3 13.636364 8 8 100 100 0 6 3 12.5546675 12.5546675 5016 Yes No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No Once a day (365) No Yes No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 4 4 Yes No No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 32 2000 0 0 2000 0 0 5000 5000 0 0 0 0 2000 2000 0 0 0 0 0 1000 0 1000 0 2000 2000 0 2 4 3 0 5 3 0 0 0 0 0 0 0 0 3 0 5 0 0 0 3 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 5 0 0 0 0 0 0 0 0 0 2 4 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 12000 10000 0 0 2000 0 17 0 8 8 0 0 0 0 0 8 8 100 100 0 9 4 16.2971992 16.2971992 5019 No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) No Yes No No Yes No No No No No No Yes No No Yes No No No No No No No No Yes No Yes No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No Yes No Yes No No No No No Yes No No No No No No 100+ 3 3 Have not spent anything 1 to 10 1 to 10 51 to 100 51 to 100 Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 11 to 20 11 to 20 11 to 20 1 to 10 20 to 30 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No No No Yes Yes No 2 2 Yes No No Phone Urban England North West North Caribbean Minority Ethnic No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 28 10500 2500 0 1000 1000 6000 0 0 0 250 100 150 720 720 0 0 0 0 0 0 0 0 0 0 0 0 3 0 2 0 0 0 0 0 0 0 0 0 2 0 1 0 0 0 2 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 50 50 50 100 100 0 0 0 0 0 100 0 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7470 1100 1150 2000 720 2500 5 0 3 3 2 66.6666641 25 2 66.6666641 1 1 100 100 0 2 2 16.6998844 16.6998844 5021 Yes No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes Yes Yes No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None 21 to 30 75% to 99% 21 to 30 100% 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 31 to 40 31 to 40 None None None None 21 to 30 75% to 99% 31 to 40 100% 31 to 40 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) No No Yes Yes No No No No Yes No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 Yes No No Phone England South East South White British White No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 30 0 0 0 3 1 0 0 0 0 0 0 30 0 0 0 3 0 30 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 30 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 83.3333359 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 500 500 0 0 0 0 34 0 33 33 0 0 0 25 75.757576 33 33 100 100 0 1 3 18.6235714 18.6235714 1270 No Yes No No No Yes No No No No No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No Yes No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England West Midlands Midlands White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 0 0 0 0 1500 1500 0 2 0 0 1 0 5 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 5 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 8 0 2 2 0 0 0 0 0 2 2 100 100 0 6 1 16.9271107 16.9271107 1278 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No Yes No No No No No No Yes No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes No No No Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No Yes No No Yes No Yes Yes No No No Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No Yes Yes No No No No No No Yes Yes No No No No No 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 3 11 to 20 11 to 20 Every 2-3 weeks (30) 2-3 times a week (130) 201 to 500 101 to 200 201 to 500 201 to 500 201 to 500 75% to 99% 1% to 24% 1 to 10 1% to 24% 41 to 50 100% 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 Have not spent anything 51 to 100 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 11 to 20 100% None 1 to 10 1% to 24% 1 to 10 1% to 24% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) 1 to 10 Have not spent anything Have not spent anything 1 to 10 2-3 times a week (130) 51 to 100 51 to 100 51 to 100 51 to 100 100% None 1 to 10 1% to 24% 100% 100+ 51 to 100 21 to 30 Less often (6) About once a month (12) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 100+ 51 to 100 100+ 11 to 20 1 to 10 Have not spent anything 501 to 1000 101 to 200 201 to 500 501 to 1000 501 to 1000 75% to 99% 41 to 50 1% to 24% 11 to 20 1% to 24% 51 to 100 100% 51 to 100 100% None 1 to 10 Slightly disagree (-2) Strongly disagree (-4) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes No No No No No Yes No No No No No Yes Yes No Yes No Yes Yes No Yes No Yes No No No No Yes Yes No No No No No No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England South West South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 31 4299 0 0 0 3000 1497 0 0 0 6500 0 6500 599 0 0 0 0 599 0 599 0 0 599 10099 7500 2599 450 1 2 20 80 13 150 1 2 0 0 3 300 0 0 20 80 7 450 1 2 20 80 10 400 0 2 20 80 1 50 0 0 0 0 0 10 0 0 4 5 0 3 50 1 0 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 3 88.8888855 12.5 2.22222233 100 100 0 0 0 100 100 100 0 0 0 100 100 0 20 15 0 100 100 0 6.25 0 100 10 0 0 100 100 21895 7500 12698 1098 599 0 566 156 407 563 503 89.342804 9.881423 19 3.37477803 60 60 100 100 0 3 1 17.9305305 17.9305305 1360 Yes No No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 Have not spent anything Have not spent anything About once a week (52) 51 to 100 51 to 100 51 to 100 51 to 100 100% None None None 100% Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 41 to 50 Have not spent anything Have not spent anything Have not spent anything 51 to 100 51 to 100 51 to 100 51 to 100 100% None None None None None 100% None 1 to 10 Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Yes No No No No No No Yes No No No No No No No Yes Yes No Yes Yes No Yes No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Rural England East of England Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 34 5000 0 0 0 5000 0 0 0 0 0 0 0 2000 0 0 2000 0 0 0 0 0 0 0 4000 4000 0 60 0 0 1 0 3 60 0 0 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11000 6000 5000 0 0 0 64 60 0 60 60 100 0 0 0 0 0 100 0 0 4 1 13.2410421 13.2410421 1629 Yes No No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Yes Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No Yes No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 11.4110355 11.4110355 1861 Yes Yes No No No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 1% to 24% 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 101 to 200 101 to 200 101 to 200 None None None None None None 101 to 200 100% 101 to 200 100% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban England South West South Indian Minority Ethnic No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 100 0 0 0 0 0 0 0 0 0 0 10 100 0 0 0 0 10 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 10 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 100 100 0 0 0 100 100 0 0 0 0 0 2000 0 0 0 2000 0 110 0 110 110 0 0 0 0 0 110 110 100 100 0 0 4 18.6235714 18.6235714 1898 Yes No No No Yes Yes No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 No Yes No Phone Urban England North West North African Minority Ethnic Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2 0 0 0 0 0 2 0 0 0 0 0 3 17.3453598 17.3453598 2065 Yes Yes No No No Yes Yes No No Yes No Yes No Yes Yes Yes No No No No Yes No No No No No No Yes No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No No Yes Yes Yes No No No No No Yes Yes No Yes Yes Yes No No No No No No No No No No No No No No Yes No Yes No No Yes Yes No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No Yes No No No Yes Yes No No Yes No No No Yes Yes Yes No Yes No 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 11 to 20 11 to 20 Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 11 to 20 100% 100% 1 to 10 50% to 74% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 21 to 30 1 to 10 11 to 20 21 to 30 None None None None 21 to 30 100% 100% 41 to 50 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 1 to 10 1 to 10 None None None None None None None 1 to 10 25% to 49% 25% to 49% 1 to 10 Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 21 to 30 None 21 to 30 100+ 100+ 41 to 50 1 to 10 20 to 30 Have not spent anything 51 to 100 31 to 40 11 to 20 51 to 100 11 to 20 25% to 49% 11 to 20 25% to 49% 1 to 10 1% to 24% 21 to 30 75% to 99% 21 to 30 75% to 99% None 31 to 40 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Slightly confident (3) No No No No No No No No No No No No No No No No Yes No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 3 3 Yes Yes No Phone Urban England North East North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 30 6500 0 0 0 5000 1500 0 0 0 0 0 0 4500 3000 0 1500 0 0 0 0 0 0 0 10000 10000 0 20 0 26 13 0 30 20 0 6 10 0 0 0 0 20 0 0 0 20 0 26 10 0 0 20 0 0 0 0 0 20 0 0 0 0 0 10 0 0 0 0 0 0 0 0 26 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 30 100 100 50 0 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 30 30 0 0 0 0 0 0 0 0 0 0 20000 11500 5000 500 3000 0 89 36 20 56 20 35.7142868 37.7358475 10 17.8571434 36 29 87.5 80.5555573 0 33 3 13.5682125 13.5682125 2126 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No Yes No No Yes No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No Yes No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything None None None Neither agree nor disagree (0) Don't know Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 31 0 0 0 0 0 0 0 0 0 0 0 0 1400 1400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1400 0 0 0 1400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 17.3453598 17.3453598 2164 Yes Yes Yes No No Yes No No Yes Yes Yes Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes No Yes No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 11 to 20 11 to 20 Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 31 to 40 Have not spent anything 31 to 40 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 21 to 30 Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Part time Any Yes No Yes No No Yes No 2 2 Yes No No Phone Rural England West Midlands Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 32 3000 0 0 3000 0 0 2500 2500 0 2000 2000 0 6000 2000 0 4000 0 0 0 4000 0 4000 0 500 500 0 6 4 1 13 2 3 0 0 0 0 0 0 0 0 0 6 2 0 0 0 0 6 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 0 0 0 0 0 0 0 0 0 6 4 1 7 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 18000 16000 0 0 2000 0 29 0 8 8 0 0 0 0 0 8 8 100 100 0 21 2 16.9271107 16.9271107 2226 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No No No Yes No No No No No No Yes Yes No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Don't know Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes Yes 4 4 Yes Yes No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 11.6929893 11.6929893 2318 Yes Yes No No No Yes No No No Yes Yes No No Yes Yes No No No Yes No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No Yes Yes No No No No Yes No No Yes No Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No 100+ 51 to 100 51 to 100 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 1 to 10 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 11 to 20 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None 1 to 10 100% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 1 to 10 Have not spent anything 1 to 10 51 to 100 11 to 20 1 to 10 1 to 10 1 to 10 50% to 74% None None 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% None 11 to 20 Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Slightly confident (3) Yes No No No No No No Yes No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England North West North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 29 12000 10000 0 1000 1000 0 0 0 0 0 0 0 2700 1000 600 1100 0 0 0 1700 600 1100 0 500 500 0 11 0 0 3 2 4 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 10 0 0 3 1 4 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 15700 3700 1000 0 1000 10000 20 0 2 2 1 50 0 1 50 1 1 100 100 0 18 1 16.6998844 16.6998844 2495 Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes Yes No No Yes Yes No No No No No Yes Yes No No No Yes Yes No No No No Yes No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No Yes No No No Yes No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None 1 to 10 1 to 10 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 1 to 10 11 to 20 21 to 30 None None None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% 11 to 20 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No Yes No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban Scotland Scotland North White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 33 0 0 0 0 0 0 2000 2000 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 2000 2000 0 20 2 0 0 3 3 10 0 0 0 0 0 10 0 0 0 3 0 20 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 10 10 10 0 0 3 0 0 0 2 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 6000 4000 0 0 2000 0 28 10 13 23 0 0 0 0 0 23 3 13.043478 13.043478 13 5 2 17.1963615 17.1963615 2617 Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No Yes No No No No Yes No No No Yes No No No Yes Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 11 to 20 Have not spent anything 11 to 20 2-3 times a week (130) Most days (365) 31 to 40 11 to 20 11 to 20 31 to 40 11 to 20 25% to 49% 50% to 74% 1 to 10 25% to 49% 11 to 20 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 31 to 40 1 to 10 11 to 20 Have not spent anything 1 to 10 Have not spent anything 31 to 40 11 to 20 11 to 20 31 to 40 11 to 20 25% to 49% 1 to 10 50% to 74% 1 to 10 25% to 49% 11 to 20 100% 11 to 20 100% None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No Yes Yes No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 No Yes No Phone Urban England London South African Minority Ethnic No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 700 0 700 0 2000 0 2000 0 0 0 0 0 35 0 0 0 0 0 15 0 0 0 0 0 20 0 0 0 0 0 35 0 0 0 0 0 15 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42.8571434 66.6666641 28.5714283 100 100 3700 700 2000 0 1000 0 35 15 20 35 15 42.8571434 66.6666641 10 28.5714283 20 20 100 100 0 0 4 18.6235714 18.6235714 2826 Yes Yes No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes Yes Yes No Yes No No No No No Several times a day (730) Yes No Yes No Yes Yes No Yes No No No Yes Yes Yes No Yes Yes Yes Yes No No No Yes No Yes No Yes No Yes No No No No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes Yes Yes No No No Yes No Yes No Yes No No No No No No Yes No Yes No No Yes No No Yes Yes No Yes No Yes No No Yes No Yes Yes No Yes No No 100+ 31 to 40 11 to 20 11 to 20 11 to 20 11 to 20 51 to 100 51 to 100 Most days (365) Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 41 to 50 20 to 30 11 to 20 Most days (365) Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 75% to 99% 1 to 10 51 to 100 51 to 100 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything 11 to 20 Most days (365) 1 to 10 100% 1 to 10 1 to 10 51 to 100 11 to 20 11 to 20 11 to 20 Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 25% to 49% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 31 to 40 11 to 20 11 to 20 Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 25% to 49% 1 to 10 25% to 49% 1 to 10 50% to 74% 75% to 99% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 100+ 100+ 51 to 100 11 to 20 51 to 100 31 to 40 51 to 100 11 to 20 11 to 20 31 to 40 11 to 20 25% to 49% 21 to 30 50% to 74% 11 to 20 25% to 49% 11 to 20 75% to 99% 11 to 20 75% to 99% 11 to 20 21 to 30 Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Yes Yes Yes Yes Yes No Yes No No No No No No Yes Yes Yes No Yes No Yes No No Yes Yes No No No No Yes No No Yes No Yes Yes Yes No No Yes Yes No Yes No No No No Yes Yes No Yes No Yes No No No No Yes No No No No Yes Yes No Yes Yes No No No Yes No No No Yes No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes Yes Yes Yes 5+ 5+ Yes Yes No Phone England London South White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 26 14000 2000 2000 2000 2000 6000 5000 3000 2000 2000 2000 0 8000 2000 2000 2000 0 0 2000 6000 2000 2000 2000 4000 2000 2000 12 12 4 4 14 12 4 4 0 0 4 4 4 4 0 0 5 4 8 8 0 0 9 8 4 4 0 0 5 3 4 4 3 4 4 3 4 5 0 0 3 3 0 4 4 0 0 4 3 4 4 4 4 0 4 0 0 4 4 4 4 5 4 50 50 50 100 100 50 50 62.5 100 100 0 75 0 0 0 0 100 0 0 0 0 55.5555573 40 33.3333321 100 100 37.5 42.8571434 37.5 60 75 33000 13000 8000 2000 6000 4000 58 16 17 33 16 48.484848 53.658535 15 45.4545441 17 15 93.9393921 88.2352905 12 25 5 12.5546675 12.5546675 2834 Yes Yes Yes Yes No No No No No No No No No No No No No No No Yes No No Yes No No No No No No Yes Yes Yes Yes Yes No Yes No No No No No No Several times a day (730) No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 None Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes Yes No Yes Yes 4 4 Yes Yes No Phone Urban Scotland Scotland North Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No Yes No Yes No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 4 0 0 0 0 1 0 0 0 0 1 0 4 0 0 0 1 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 5 6 0 0 0 0 0 6 0 0 0 1 0 4 16.5564308 16.5564308 2837 Yes Yes Yes No No Yes Yes No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 21 to 30 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Male 25 to 34 16 to 34 25 to 34 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 28 2000 0 0 2000 0 0 0 0 0 0 0 0 4000 0 0 4000 0 0 0 0 0 0 0 0 0 0 20 0 0 2 20 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 20 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 6000 6000 0 0 0 0 42 0 20 20 0 0 0 0 0 20 20 100 100 0 22 2 13.2410421 13.2410421 2980 Yes Yes Yes Yes Yes Yes No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No No No No No No Yes Yes No Yes No Yes No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No Yes No No Yes No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% 1 to 10 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes Yes No No Yes 5+ 5+ Yes No No Phone Urban England North West North White British White Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 700 700 0 0 3 0 5 0 3 0 3 0 0 0 0 0 0 0 5 0 0 0 3 0 5 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 3 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 100 0 100 100 0 0 0 0 0 0 0 0 0 0 700 700 0 0 0 0 11 3 5 8 3 37.5 0 5 62.5 5 5 100 100 1 3 5 16.6998844 16.6998844 2999 Yes Yes Yes Yes Yes Yes Yes Yes Yes No No Yes No Yes Yes No No No No No No No Yes No No No No Yes No Yes Yes Yes Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No No No No Yes Yes No No No No Yes Yes No Yes Yes Yes Yes No No No No Yes No No No No Yes Yes No No No No Yes No No No No Yes Yes No No No No Yes No No No No No No No No No No Yes No No No No Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes Yes No Yes No No Yes Yes Yes Yes Yes Yes Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 2-3 times a week (130) About once a week (52) About once a week (52) 21 to 30 1 to 10 11 to 20 21 to 30 None None None None None 21 to 30 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) About once a month (12) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything 41 to 50 21 to 30 11 to 20 41 to 50 None None None None None None 41 to 50 100% 41 to 50 100% 1 to 10 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) Yes Yes Yes Yes No Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes No No No No No Yes Yes Yes No Yes Yes No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes Yes No Phone Urban England London South Pakistani Minority Ethnic Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 32 1300 0 0 200 200 900 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 22 2 0 0 20 5 6 0 0 0 20 0 15 0 0 0 0 0 21 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 0 0 0 20 0 5 5 5 0 0 0 2 0 1 2 0 0 0 5 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2200 1700 200 300 0 0 49 26 15 41 0 0 0 0 0 41 41 100 100 7 8 3 17.9305305 17.9305305 3003 No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes No Yes No No No No No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No Yes Yes No No No No No No Yes No Yes No No No No No 3 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 2-3 times a week (130) Most days (365) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 50% to 74% 1 to 10 25% to 49% 1 to 10 50% to 74% 50% to 74% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 20 to 30 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 1 to 10 75% to 99% 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes Yes No Yes No Yes No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 Yes Yes No Phone Urban England London South White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 31 2500 100 200 300 400 1500 100 100 0 150 150 0 1000 100 200 300 0 0 400 300 100 200 0 100 100 0 4 1 1 1 1 1 1 0 0 0 0 0 2 0 0 0 0 0 3 0 0 0 0 0 1 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 3 3 3 0 0 0 0 0 1 1 1 1 1 1 33.3333321 50 33.3333321 50 66.6666641 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 2850 1150 400 500 500 300 9 1 2 3 1 33.3333321 85.7142868 1 33.3333321 2 1 66.6666641 50 3 6 1 14.5680799 14.5680799 3007 Yes No Yes No No Yes No No No No No Yes No Yes No No No No No Yes Yes No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No Yes Yes No No No No Yes No No No No No Yes Yes Yes No Yes Yes No No Yes Yes Yes No Yes Yes No 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 31 to 40 31 to 40 31 to 40 None None None None 31 to 40 100% 100% 1 to 10 1 to 10 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 41 to 50 1 to 10 Have not spent anything Have not spent anything Have not spent anything 31 to 40 41 to 50 41 to 50 41 to 50 None None None None None None 41 to 50 100% 41 to 50 100% 1 to 10 1 to 10 Don't know Don't know Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Don't know Strongly disagree (-4) Slightly agree (2) Yes Yes No Yes No Yes No No Yes No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes No No No No No Yes Yes No No No Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time Any Yes No Yes No No Yes No 3 3 Yes Yes No Phone England North West North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 27 3400 3400 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 2 0 0 4 0 0 0 0 0 0 0 40 0 0 0 4 0 40 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 0 4 0 10 10 10 0 0 0 0 0 0 2 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4400 1000 0 0 0 3400 46 0 44 44 0 0 0 0 0 44 44 100 100 10 2 3 11.6929893 11.6929893 4670 Yes Yes No No No Yes No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No Yes Yes No No Yes Yes Yes No No No No Yes Yes No Yes No No No No No No No Yes No No No Yes Yes No No No No No Yes Yes No No Yes Yes No No No No No Yes Yes No Yes No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) Every 2-3 weeks (30) 11 to 20 11 to 20 1 to 10 11 to 20 1 to 10 25% to 49% None 1 to 10 50% to 74% 11 to 20 100% 100% 201 to 500 11 to 20 11 to 20 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) None 1 to 10 100+ 100+ 51 to 100 41 to 50 21 to 30 11 to 20 21 to 30 Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None 1 to 10 1% to 24% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 20 to 30 Have not spent anything 11 to 20 1 to 10 About once a week (52) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% None 1 to 10 25% to 49% None None 1% to 24% 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 41 to 50 20 to 30 51 to 100 Have not spent anything 41 to 50 21 to 30 11 to 20 31 to 40 1 to 10 1% to 24% None None 11 to 20 25% to 49% 11 to 20 50% to 74% 11 to 20 75% to 99% 11 to 20 11 to 20 Strongly disagree (-4) Don't know Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 25 to 34 16 to 34 25 to 34 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England London South White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 32 2000 0 0 0 2000 0 0 0 0 0 0 0 20000 7000 5000 3000 2000 3000 0 3000 0 2000 1000 5500 5500 0 20 0 0 8 11 9 15 0 0 3 6 0 5 0 0 3 5 0 20 0 0 6 11 0 5 0 0 2 2 0 0 0 0 0 0 0 10 0 0 1 3 0 3 15 0 0 4 0 0 500 15 15 0 3 0 0 0 0 0 0 2 0 9 25 0 50 100 100 0 0 0 0 0 0 0 0 0 0 33.3333321 0 16.666666 50 100 100 18.181818 0 27.272728 0 18.181818 0 0 0 0 0 26500 10500 5000 3000 8000 0 48 24 13 37 9 24.3243237 0 14 37.8378372 28 19 75.6756744 67.8571396 18 11 2 18.6235714 18.6235714 4860 Yes Yes Yes No No Yes Yes No Yes No No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes Yes No Yes Yes Yes No No No No No Yes Yes No No No Yes Yes No No No No No Yes No No No No No No No No No Yes Yes No Yes Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No Yes No No Yes No Yes Yes No Yes No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 75% to 99% 100% Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 25% to 49% 1 to 10 50% to 74% 50% to 74% 100+ 51 to 100 51 to 100 11 to 20 21 to 30 Have not spent anything Have not spent anything 1 to 10 Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 25% to 49% 50% to 74% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 50% to 74% 75% to 99% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 41 to 50 11 to 20 20 to 30 Have not spent anything Don't know 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% 100% 1 to 10 1% to 24% 1 to 10 50% to 74% 75% to 99% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 1 to 10 51 to 100 Have not spent anything 31 to 40 11 to 20 1 to 10 21 to 30 11 to 20 25% to 49% 11 to 20 50% to 74% 1 to 10 25% to 49% 11 to 20 50% to 74% 11 to 20 75% to 99% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes Yes No No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No Yes No No Yes No Yes Yes No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 25 to 34 16 to 34 25 to 34 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban England London South African Minority Ethnic Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes No Yes No Yes Yes Yes No No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 27 1600 0 0 0 400 1200 0 0 0 0 0 0 11500 6000 2000 2500 0 0 1000 4500 2000 2500 0 1000 1000 0 5 0 3 12 14 2 5 0 3 10 2 0 0 0 0 0 10 0 5 0 3 10 12 0 5 0 0 3 3 0 3 0 0 3 5 0 4 0 1 2 2 0 3 0 0 2 5 6 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 100 60 80 0 100 0 0 0 0 0 0 0 33.3333321 66.6666641 66.6666641 30 60 20 30 71.4285736 80 25 100 16.666666 66.6666641 75 0 0 0 0 0 13800 6000 400 400 7000 0 36 20 10 30 11 36.6666679 64.7058792 9 30 19 13 80 68.421051 0 6 1 18.6235714 18.6235714 4983 Yes No No No No Yes Yes No No No Yes No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes No No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No No No Yes No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None 1 to 10 25% to 49% None 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes Yes Yes No No Yes No No No No No Yes Yes No No No No Yes Yes No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking Any Yes No Yes No No Yes No 5+ 5+ Yes No No Phone Urban Scotland Scotland North White British White Yes No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 5 0 0 0 2000 2000 0 0 200 0 200 0 2 0 3 1 1 0 2 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 1 0 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 0 100 205 5 200 0 0 0 7 3 0 3 3 100 0 1 33.3333321 0 0 100 0 0 4 5 10.0057049 10.0057049 995 Yes Yes Yes No No Yes Yes No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 11 to 20 About once a month (12) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything Most days (365) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 1 to 10 1 to 10 1 to 10 Have not spent anything 41 to 50 1 to 10 21 to 30 31 to 40 11 to 20 50% to 74% None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) No Yes Yes No Yes Yes No Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Part time Any Yes No Yes No No No Yes 5+ 5+ Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 21 2200 0 0 0 700 1500 1000 1000 0 0 0 0 3000 1000 0 2000 0 0 0 2000 0 2000 0 600 600 0 20 2 0 2 20 1 10 0 0 0 0 0 10 0 0 0 20 0 20 0 0 0 20 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 2 0 2 0 1 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 7800 5600 700 500 1000 0 45 10 30 40 20 50 0 0 0 20 20 100 100 0 5 5 14.6100512 14.6100512 997 Yes No No No No Yes No No Yes No No Yes No Yes No Yes No No No No No No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 100+ 51 to 100 51 to 100 Have not spent anything 3 1 to 10 Have not spent anything Have not spent anything About once a week (52) About once a week (52) 51 to 100 21 to 30 31 to 40 51 to 100 51 to 100 100% 100% None None 100% 21 to 30 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 1 to 10 1 to 10 1 to 10 100% 100% None None None None 100% 1 to 10 Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a week (52) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 41 to 50 11 to 20 Have not spent anything 20 to 30 51 to 100 101 to 200 21 to 30 51 to 100 101 to 200 51 to 100 50% to 74% 101 to 200 75% to 99% None None 41 to 50 100% 41 to 50 100% None 41 to 50 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Yes Yes Yes No No No No No No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ No Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 21 12700 9700 0 2500 500 0 0 0 0 0 0 0 2700 1500 0 1200 0 0 0 1000 0 0 1000 1000 1000 0 100 0 0 13 50 3 30 0 0 0 0 0 40 0 0 5 50 0 70 0 0 5 50 0 70 0 0 5 0 0 100 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 30 0 0 8 0 3 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 0 0 0 100 100 0 0 0 0 0 18400 4700 1500 0 2500 9700 166 30 95 125 75 60 97.4137955 0 0 50 50 100 100 0 41 5 11.4285479 11.4285479 1000 Yes Yes No No No Yes No No Yes Yes No No No Yes No No No Yes No No Yes No No No No No No Yes No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Most days (365) 51 to 100 41 to 50 1 to 10 51 to 100 None None None None None None None Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 None None None None None None None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 31 to 40 31 to 40 31 to 40 None None None None 31 to 40 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 101 to 200 41 to 50 51 to 100 101 to 200 None None None None None None 31 to 40 25% to 49% 31 to 40 25% to 49% None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes Yes No No No No No No No No No Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Yes Yes Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Rural England East of England Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 700 700 0 0 0 0 0 0 0 0 0 0 0 0 60 0 0 15 35 0 50 0 0 0 0 0 10 0 0 15 35 0 60 0 0 15 35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 700 0 0 0 700 0 110 50 60 110 0 0 0 0 0 110 35 31.818182 31.818182 0 0 4 14.6100512 14.6100512 1019 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 51 to 100 31 to 40 3 1 to 10 Have not spent anything Have not spent anything 41 to 50 41 to 50 Every 2-3 weeks (30) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% 100% None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% None None None Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 Every 2-3 weeks (30) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 75% to 99% 75% to 99% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 11 to 20 1 to 10 11 to 20 51 to 100 31 to 40 31 to 40 11 to 20 11 to 20 31 to 40 11 to 20 50% to 74% 11 to 20 75% to 99% None None 1 to 10 50% to 74% 1 to 10 75% to 99% None 1 to 10 Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Slightly agree (2) Yes Yes Yes Yes No Yes Yes No No No No No No Yes Yes Yes No No No No Yes No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes Yes Yes Yes Yes No No No No Yes Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 24 8000 2500 1000 0 0 4500 0 0 0 0 0 0 5000 5000 0 0 0 0 0 500 0 0 500 1200 1200 0 20 0 0 4 7 4 10 0 0 2 2 0 10 0 0 2 5 0 20 0 0 4 7 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 85.7142868 85.7142868 0 0 0 0 0 12200 1200 500 1500 5500 3500 35 14 17 31 20 64.5161285 83.3333359 0 0 11 6 83.8709641 54.5454559 0 4 2 16.0742931 16.0742931 1032 Yes No No No No Yes No No Yes No No No No Yes No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No No Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a week (52) 51 to 100 1 to 10 41 to 50 51 to 100 None None None None 51 to 100 100% 100% 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 51 to 100 1 to 10 51 to 100 51 to 100 None None None None None None 51 to 100 100% 51 to 100 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No Yes No Yes No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 1300 1000 0 300 0 0 0 0 0 0 0 6000 6000 0 3 0 0 1 54 8 0 0 0 0 4 0 3 0 0 0 50 0 3 0 0 0 54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 54 0 0 0 0 0 0 0 0 0 0 0 0 1 0 8 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 7300 6300 0 0 1000 0 66 4 53 57 0 0 0 0 0 57 57 100 100 0 9 3 10.8361282 10.8361282 1055 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 1 to 10 Have not spent anything 1 to 10 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Yes Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 3600 0 600 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 8 2 2 4 0 0 0 0 0 4 0 0 0 0 4 2 15.476119 15.476119 1060 Yes Yes Yes No No Yes Yes No Yes Yes Yes Yes No Yes No No No Yes No No Yes No Yes No No No No No No Yes Yes No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes Yes Yes No Yes Yes Yes No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No Yes Yes No No No No No Yes No No Yes Yes No No No No No Yes Yes No No Yes Yes No No No No No No No No No No Yes Yes No No No No Yes Yes Yes Yes No No No No Yes Yes Yes Yes No No No No Yes Yes Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 21 to 30 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 Every 2-3 weeks (30) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 50% to 74% 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 20 to 30 1 to 10 1 to 10 1 to 10 About once a week (52) About once a week (52) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 1% to 24% 1 to 10 1% to 24% 100% 1 to 10 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 25% to 49% 1 to 10 51 to 100 31 to 40 11 to 20 Have not spent anything 31 to 40 Have not spent anything 21 to 30 1 to 10 11 to 20 11 to 20 1 to 10 50% to 74% 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 100% 1 to 10 100% 1 to 10 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time Any Yes No No Yes No Yes No 4 4 Yes Yes No Phone Rural England East Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 4300 1800 500 1000 500 0 500 2500 500 1000 1000 2000 2000 0 5 0 0 8 10 3 0 0 0 2 4 0 5 0 0 4 5 0 5 0 0 6 9 0 0 0 0 1 9 0 0 0 0 2 2 1 5 0 0 2 2 0 4 5 0 0 5 0 0 0 0 0 0 0 0 4 0 0 0 0 2 1 3 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 16.666666 66.6666641 33.3333321 66.6666641 100 100 100 20 22.2222214 0 100 0 33.3333321 0 0 0 8800 4000 1500 0 3300 0 26 6 14 20 10 50 31.25 9 45 10 10 100 100 4 6 4 9.84904194 9.84904194 1071 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No Yes 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None None Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time Any Yes No No Yes No Yes No 5+ 5+ Yes No No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 23 5000 5000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 0 0 0 0 5000 4 0 4 4 0 0 0 0 0 4 0 0 0 0 0 5 15.476119 15.476119 1074 Yes No No No No Yes No No No No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None None None None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 11 to 20 11 to 20 None None None None None None None None None None None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes Yes Yes Yes No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes Yes No Phone Rural England South West South Any other white White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 5 12 6 0 0 0 5 0 0 0 0 0 0 12 0 0 0 0 5 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 23 5 12 17 0 0 0 0 0 17 0 0 0 0 6 2 10.8361282 10.8361282 1101 Yes No No No No No No No Yes Yes No Yes No Yes No Yes No No No No Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes Yes Yes Yes No No No No Yes Yes No Yes Yes Yes Yes No No No No Yes No No No Yes Yes No No No No No Yes No No Yes Yes Yes Yes No No No No Yes Yes No No Yes Yes Yes No No No No Yes No No No Yes No No No No No No Yes No No No No Yes No No Yes No No No No Yes No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) About once a week (52) 101 to 200 11 to 20 11 to 20 31 to 40 31 to 40 100% 1% to 24% 11 to 20 50% to 74% 100% 501 to 1000 21 to 30 21 to 30 51 to 100 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 100+ 41 to 50 11 to 20 21 to 30 21 to 30 Have not spent anything 21 to 30 Have not spent anything About once a week (52) About once a week (52) About once a month (12) 31 to 40 1 to 10 11 to 20 11 to 20 1 to 10 25% to 49% 50% to 74% None None None None 1 to 10 50% to 74% 75% to 99% 1 to 10 11 to 20 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) 1 to 10 Have not spent anything 1 to 10 Have not spent anything About once a month (12) About once a week (52) 11 to 20 1 to 10 11 to 20 11 to 20 None None None None 11 to 20 50% to 74% 50% to 74% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 20 to 30 11 to 20 Have not spent anything 101 to 200 21 to 30 41 to 50 51 to 100 41 to 50 50% to 74% 31 to 40 1% to 24% 11 to 20 25% to 49% 21 to 30 50% to 74% 21 to 30 75% to 99% 31 to 40 101 to 200 Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Yes Yes Yes Yes Yes No Yes Yes No No No No Yes No No No No No No No No No Yes No No No No No Yes No Yes Yes No No No No No Yes Yes No No No No No No No No No No No No No No No No Yes No No Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 23 70 0 0 50 20 0 500 500 0 300 0 300 10500 1500 3000 3000 0 3000 0 1000 0 1000 0 3000 3000 0 115 1 3 39 20 6 15 0 3 7 5 0 20 0 0 12 15 0 35 0 3 19 20 0 35 0 0 7 0 0 15 0 0 18 0 0 20 0 0 0 0 0 0 0 0 3 8 12 0 1000 30 30 0 0 3 0 0 80 1 0 20 0 6 100 13.043478 57.1428566 0 100 0 0 0 0 0 0 0 0 100 100 36.8421059 66.6666641 0 0 66.6666641 78.9473648 0 0 0 60 60 0 0 0 0 0 12370 7550 320 3000 1500 0 184 30 47 77 42 54.5454559 22.1476517 20 25.9740257 35 23 84.4155807 65.7142868 33 107 1 11.7109346 11.7109346 1114 Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 101 to 200 101 to 200 101 to 200 None None 1 to 10 1% to 24% None None None Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 101 to 200 101 to 200 101 to 200 None None None None 1 to 10 1% to 24% None None None None None 1 to 10 Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Yes Yes Yes No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 1800 1800 0 140 0 0 0 0 4 140 0 0 0 0 0 0 0 0 0 0 0 140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 2.85714293 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2800 1800 0 0 1000 0 144 140 0 140 0 0 0 4 2.85714293 140 0 0 0 0 4 2 10.0924006 10.0924006 1120 Yes No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No Yes No No No No No No No No No Yes Yes No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly confident (3) No No No No No No No No No No No Yes No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes Yes No Phone Urban England South West South White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 10.8361282 10.8361282 1126 Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Yes Yes No No Yes Yes No Yes Yes No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 20 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 12.5739346 12.5739346 1142 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know No No Yes No No Yes No No Yes No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 9.84904194 9.84904194 1151 Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Once a day (365) Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 31 to 40 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 25% to 49% 1 to 10 51 to 100 41 to 50 1 to 10 1 to 10 1 to 10 1 to 10 21 to 30 1 to 10 1 to 10 1 to 10 100% 11 to 20 50% to 74% 1 to 10 100% None 100% 1 to 10 21 to 30 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes No No Phone Urban England North West North Pakistani Minority Ethnic Yes No Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No Yes No Yes No No No Yes CAWI Adults 21 3500 500 500 500 500 1500 1000 1000 0 500 500 0 1500 500 500 500 0 0 0 2000 1000 1000 0 1000 1000 0 10 2 2 2 5 5 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 5 2 2 2 5 2 5 0 0 0 0 0 0 0 0 0 0 0 0 5 5 5 0 0 0 0 0 5 2 2 2 5 5 100 50 100 0 100 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 40 0 0 0 7000 4500 500 500 500 1000 26 5 0 5 5 100 69.2307663 5 100 0 0 100 0 5 21 1 11.7109346 11.7109346 1161 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None None Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Don't know Neither agree nor disagree (0) Slightly agree (2) Don't know Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 4 4 No Yes No Phone Rural England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 4 14.9710493 14.9710493 1186 Yes Yes No No No Yes No No No Yes No Yes No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Several times a day (730) Yes No Yes Yes Yes Yes No No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes No Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 75% to 99% 75% to 99% Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 1 to 10 1 to 10 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1% to 24% 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 100+ 100+ Have not spent anything 21 to 30 None 21 to 30 100+ 100+ Have not spent anything Have not spent anything 1 to 10 Have not spent anything 101 to 200 1 to 10 51 to 100 51 to 100 None None 1 to 10 1% to 24% None None 41 to 50 75% to 99% 41 to 50 75% to 99% None 41 to 50 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes No No Yes No No No No Yes No No No No Yes No Yes No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No No Yes Phone Urban Scotland Scotland North White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 3300 800 0 2500 0 0 0 0 0 0 0 20000 20000 0 50 0 0 15 10 30 0 0 0 0 5 0 50 0 0 0 5 0 50 0 0 0 10 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 30 0 0 0 90 90 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23300 22500 0 0 800 0 105 5 55 60 0 0 6.66666651 0 0 60 45 75 75 0 45 2 10.0057049 10.0057049 1188 Yes No No No Yes Yes No No No No No Yes No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes Yes Yes No No No No 51 to 100 51 to 100 51 to 100 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) Most days (365) 501 to 1000 51 to 100 201 to 500 501 to 1000 None None 50% to 74% None None 501 to 1000 100% 100% 51 to 100 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything 2-3 times a week (130) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 31 to 40 Have not spent anything Have not spent anything 11 to 20 51 to 100 501 to 1000 51 to 100 501 to 1000 501 to 1000 None None 41 to 50 50% to 74% None None 501 to 1000 100% 501 to 1000 100% None 51 to 100 Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) No No No No No No No No Yes No No No No Yes Yes Yes Yes No No Yes Yes No No No No Yes No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban England East of England Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 21 10000 7000 2000 1000 0 0 0 0 0 0 0 0 3000 2000 0 1000 0 0 0 2000 0 2000 0 0 0 0 670 0 0 3 100 0 100 0 0 0 0 0 500 0 0 0 100 0 600 0 0 0 100 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 0 100 0 0 0 0 0 0 0 0 0 70 0 0 3 0 0 0 71.4285736 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 15000 4000 0 0 2000 9000 773 100 600 700 0 0 68.4931488 0 0 700 700 100 100 0 73 4 14.6100512 14.6100512 1196 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No Yes No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No Yes Yes Yes Yes Yes No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes Yes Yes No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 3 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 About once a month (12) Every 2-3 weeks (30) 101 to 200 51 to 100 51 to 100 101 to 200 51 to 100 25% to 49% 1% to 24% None None 51 to 100 100% 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 21 to 30 1 to 10 21 to 30 21 to 30 None None None None 21 to 30 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 21 to 30 11 to 20 1 to 10 21 to 30 None None None None 11 to 20 50% to 74% 50% to 74% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 201 to 500 51 to 100 101 to 200 201 to 500 51 to 100 25% to 49% 1 to 10 1% to 24% None None 101 to 200 75% to 99% 101 to 200 75% to 99% None 1 to 10 Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No Yes Yes Yes No Yes No No Yes No No No No Yes Yes Yes Yes Yes No No No No No No No No No Yes No No No Yes No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes No Yes No Yes No No Yes No No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No Yes No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Urban England North West North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 23 2750 850 0 0 1000 900 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 50 0 155 30 2 6 30 10 55 5 2 5 20 0 100 25 0 1 10 0 155 30 2 6 30 0 55 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 100 30 2 6 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 35.4838715 18.181818 0 100 100 0 0 0 100 100 0 0 0 100 100 0 0 0 0 100 100 0 0 0 66.6666641 66.6666641 0 0 0 0 0 2200 50 1000 300 0 850 233 87 136 223 55 24.6636772 15.3846149 0 0 168 158 95.5156937 94.0476227 0 10 2 14.9710493 14.9710493 1199 Yes Yes No No No No No No Yes No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% None None 100% Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 75% to 99% None None None 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking Any Yes No No Yes No No Yes 3 3 Yes Yes No Phone Scotland Scotland North White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 300 300 0 0 0 0 0 3 0 0 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 100 66.6666641 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 1500 0 0 0 1500 0 4 3 0 3 3 100 75 0 0 0 0 100 0 0 1 3 11.6103354 11.6103354 1212 Yes No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 101 to 200 101 to 200 101 to 200 None None None None None None 101 to 200 100% 101 to 200 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes No Yes No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 50 0 0 0 0 0 0 0 100 0 0 0 50 0 100 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1000 0 0 0 1000 0 150 0 150 150 0 0 0 0 0 150 150 100 100 0 0 3 11.4285479 11.4285479 1216 Yes Yes No Yes Yes Yes No No No Yes Yes Yes No Yes Yes No No No Yes No Yes No No No No No No No No Yes No Yes Yes No No No No No No No No No Several times a day (730) Yes No Yes Yes Yes Yes No No No No No Yes Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No Yes Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Yes 100+ 100+ 100+ 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 41 to 50 1 to 10 31 to 40 41 to 50 None None 11 to 20 1% to 24% 41 to 50 100% 100% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Most days (365) Less often (6) 41 to 50 21 to 30 1 to 10 31 to 40 None None None None None 1 to 10 1% to 24% None None None 1 to 10 Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 Have not spent anything 1 to 10 100+ 101 to 200 41 to 50 41 to 50 51 to 100 None None None None 11 to 20 1% to 24% 51 to 100 50% to 74% 51 to 100 50% to 74% None 11 to 20 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Yes No Yes No No No No Yes No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone England South East South Any other white White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 22 23000 20000 2000 0 1000 0 0 0 0 0 0 0 2500 1000 0 1500 0 0 0 0 0 0 0 4000 4000 0 50 1 0 41 10 10 10 0 0 30 5 0 40 1 0 1 5 0 50 1 0 31 10 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 1 50 1 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 10 0 10 0 0 24 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 3.22580647 0 0 0 0 0 100 100 0 0 0 0 0 29500 5500 1000 0 1000 22000 112 45 47 92 0 0 0 12 13.043478 92 61 66.3043442 66.3043442 0 20 2 10.8361282 10.8361282 1225 Yes No No No No Yes No No No No No No No Yes No No No No No Yes Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No Yes Yes No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything Have not spent anything Have not spent anything 51 to 100 Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes Yes No Phone Urban Scotland Scotland North White British White No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 6500 1500 0 0 0 0 5000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6500 0 0 0 6500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.0057049 10.0057049 1232 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 3 5 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 500 500 0 0 0 0 8 0 3 3 0 0 0 0 0 3 3 100 100 0 5 4 10.0924006 10.0924006 1237 Yes Yes No No No Yes No No No No No No No Yes Yes No No Yes No Yes No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) No No No No No No No Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No Yes No No Yes No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 51 to 100 11 to 20 11 to 20 Have not spent anything 11 to 20 11 to 20 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 51 to 100 51 to 100 1 to 10 About once a month (12) 11 to 20 1 to 10 1 to 10 1 to 10 1% to 24% None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 100+ 51 to 100 1 to 10 11 to 20 51 to 100 51 to 100 41 to 50 1 to 10 21 to 30 21 to 30 1 to 10 1% to 24% None None 1 to 10 1% to 24% 21 to 30 100% 21 to 30 100% None 11 to 20 Neither agree nor disagree (0) Don't know Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Yes Yes No No No No No No No No No No No Yes Yes No No No No No Yes No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time Any Yes No Yes No No Yes No 5+ 5+ Yes No No Phone Urban England North West North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 22 8000 8000 0 0 0 0 0 0 0 0 0 0 15800 8000 2000 2000 0 1800 2000 0 0 0 0 7500 7000 500 0 0 0 7 20 16 0 0 0 0 0 6 0 0 0 3 20 0 0 0 0 3 20 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 3 20 5 0 0 0 0 0 0 0 0 0 0 0 4 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33.3333321 33.3333321 100 100 0 0 0 100 100 16.666666 0 0 100 100 29300 9000 500 1800 10000 8000 43 6 23 29 1 3.4482758 0 1 3.4482758 28 28 100 100 0 14 5 10.0924006 10.0924006 1244 Yes No Yes No No Yes No No No Yes Yes Yes No Yes No Yes No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No Yes Yes No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes Yes No No No Yes No No Yes No No No No Yes Yes No Yes Yes Yes Yes No No Yes Yes No No No No Yes No No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 3 0 1 2 3 0 3 0 1 0 0 0 0 0 0 1 3 0 3 0 1 1 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 1000 1000 0 0 0 0 9 4 4 8 3 37.5 0 0 0 5 5 100 100 0 1 4 14.0663652 14.0663652 1269 Yes No Yes No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No Several times a day (730) No No No No Yes No No No No No No Yes Yes No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 31 to 40 None 31 to 40 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 None None Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No Yes No No Yes No 2 2 Yes No No Phone Northern Ireland Northern Ireland North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 24 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 40 2 8.94357586 8.94357586 1283 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No No No No No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes No Yes Yes No No No No No No Yes No No Yes Yes Yes No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Less often (6) 31 to 40 1 to 10 1 to 10 None None None None None None None None 21 to 30 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 75% to 99% 75% to 99% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 101 to 200 1 to 10 51 to 100 51 to 100 None None None None None None 51 to 100 75% to 99% 51 to 100 75% to 99% None 31 to 40 Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Don't know Slightly disagree (-2) No No No Yes No No No No No No No No No Yes No Yes No Yes No Yes No No No No No Yes No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Rural England East of England Midlands White British White Yes No No No No Yes No Yes No No Yes Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 20 1500 0 0 1500 0 0 1400 1400 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 1500 1500 0 35 4 0 10 50 4 5 0 0 0 0 0 0 0 0 10 50 0 5 0 0 10 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 50 0 0 0 0 0 0 0 0 0 30 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 80 0 0 0 100 100 0 0 0 0 0 6400 4400 0 0 2000 0 103 5 60 65 0 0 0 0 0 65 58 89.2307663 89.2307663 0 38 4 14.0663652 14.0663652 1303 Yes Yes No No No Yes No No Yes Yes No Yes No Yes No Yes No No No No Yes No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes Yes No Yes No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No Yes Yes No No Yes No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 11 to 20 11 to 20 11 to 20 None None 1 to 10 50% to 74% 11 to 20 100% 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 11 to 20 Have not spent anything Have not spent anything 1 to 10 100+ 41 to 50 11 to 20 11 to 20 31 to 40 None None None None 1 to 10 25% to 49% 31 to 40 100% 31 to 40 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes Yes Yes Yes Yes Yes No No No No No No Yes Yes Yes Yes Yes No Yes Yes Yes No No No Yes No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time Any Yes No No Yes No Yes No 5+ 5+ No Yes No Phone Urban Wales Wales Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 21 80000 80000 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 2000 2000 0 20 0 0 10 10 6 0 0 0 10 10 0 20 0 0 0 0 0 20 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 20 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 50 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 83000 2000 0 0 1000 80000 46 20 20 40 0 0 0 10 25 40 40 100 100 0 6 5 14.6100512 14.6100512 1335 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Once a day (365) No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 Yes No No Phone Urban England North West North Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 23 500 0 0 500 0 0 2500 2500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 3 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 4 10.0924006 10.0924006 1340 Yes No Yes No Yes Yes No No No Yes No Yes No Yes No No No No No Yes Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 None None 11 to 20 100% 11 to 20 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 11 to 20 100% 11 to 20 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 10 0 0 0 0 0 2 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 10 2 12 0 0 0 12 100 12 12 100 100 0 0 4 14.6100512 14.6100512 1345 Yes No Yes No No No No No Yes No No No No Yes No Yes No No No No No No No No Yes No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes Yes Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 31 to 40 20 to 30 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 1 to 10 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 25% to 49% None None 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 20 to 30 Have not spent anything 11 to 20 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None 1 to 10 75% to 99% 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 20 to 30 Have not spent anything 11 to 20 Have not spent anything 31 to 40 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% None None 1 to 10 25% to 49% 1 to 10 100% 1 to 10 100% None 11 to 20 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Yes Yes Yes No Yes No No Yes Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Rural England South West South White British White Yes Yes No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 20 1000 0 0 1000 0 0 4000 3000 1000 0 0 0 3000 1000 0 1000 1000 0 0 2500 0 2000 500 2000 2000 0 5 4 4 5 5 8 0 3 4 2 0 0 0 0 0 1 5 0 0 3 4 3 5 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 1 4 0 0 0 0 4 0 5 0 0 0 0 0 0 0 0 0 5 1 0 2 0 8 0 0 0 0 0 100 0 0 0 100 0 0 0 100 100 100 0 33.3333321 0 0 100 0 0 80 100 100 0 0 0 0 0 13000 9000 2500 0 1500 0 31 9 6 15 6 40 0 5 33.3333321 9 9 100 100 0 16 4 15.476119 15.476119 1359 Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No Several times a day (730) No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything Have not spent anything Have not spent anything 51 to 100 Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 31 to 40 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 21 to 30 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 21 to 30 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 2 2 No No Yes Phone Urban England South West South White British White No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 8000 0 0 8000 0 0 0 0 0 0 0 0 0 0 0 0 0 35 0 0 0 0 0 3 0 0 0 0 0 2 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 8000 8000 0 0 0 0 35 3 2 5 0 0 0 0 0 5 5 100 100 0 30 2 12.5739346 12.5739346 1365 Yes No Yes Yes No Yes No No Yes Yes Yes Yes No Yes Yes No No No No No No No No No No No Yes No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No Yes Yes Yes Yes Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 201 to 500 201 to 500 201 to 500 None None 1 to 10 1% to 24% 201 to 500 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 21 to 30 21 to 30 Have not spent anything 21 to 30 1 to 10 11 to 20 Have not spent anything About once a week (52) 2-3 times a week (130) 31 to 40 11 to 20 11 to 20 31 to 40 31 to 40 100% 1% to 24% None None 1 to 10 1% to 24% 100% 1 to 10 Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 20 to 30 20 to 30 Have not spent anything About once a week (52) Most days (365) 101 to 200 41 to 50 51 to 100 101 to 200 101 to 200 75% to 99% None 1 to 10 1% to 24% 1 to 10 100% 100% 21 to 30 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 11 to 20 20 to 30 Have not spent anything 501 to 1000 51 to 100 501 to 1000 501 to 1000 101 to 200 1% to 24% 1 to 10 1% to 24% 11 to 20 1% to 24% 501 to 1000 100% 501 to 1000 100% None 21 to 30 Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes Yes Yes No No No Yes No No No No No Yes Yes No No No No No No Yes No No No No No No Yes Yes Yes Yes Yes No Yes No No No No Yes Yes No No No No No Not particularly confident (2) Yes No No Yes No No No No No No No No Yes No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 No No Yes Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 8300 3000 0 2500 1000 1800 0 5500 2500 3000 0 2500 2500 0 500 0 0 37 149 4 0 0 0 15 50 0 500 0 0 20 75 0 500 0 0 35 125 0 0 0 0 35 115 0 0 0 0 5 0 0 5 0 0 0 10 0 4 500 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 2 24 4 0 0 1 100 100 0 0 0 0 0 0 0 0 0 0 100 13.5135136 0 11.4285717 0 100 92 0 8 100 100 0 0 0 0 0 13800 8000 1000 1800 3000 0 690 65 595 660 150 22.727272 2.77777767 15 2.27272725 510 510 100 100 0 30 3 11.7109346 11.7109346 1369 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No No No Yes Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Every 2-3 weeks (30) 31 to 40 11 to 20 11 to 20 31 to 40 None None None None None None None Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 41 to 50 31 to 40 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 41 to 50 11 to 20 11 to 20 31 to 40 None None None None None None None None None None None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 3 3 Yes Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 2500 1500 0 1000 0 0 0 1500 0 1500 0 1000 1000 0 40 0 0 2 0 3 20 0 0 0 0 0 20 0 0 0 0 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 3500 0 0 1500 0 45 20 20 40 0 0 0 0 0 40 0 0 0 0 5 3 9.84904194 9.84904194 1372 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No Yes No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 100+ 51 to 100 51 to 100 Have not spent anything 41 to 50 Have not spent anything Have not spent anything 41 to 50 None 41 to 50 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 Have not spent anything Have not spent anything Have not spent anything 51 to 100 41 to 50 None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 5+ 5+ Yes No No Phone Urban England London South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 21 15000 10000 0 5000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 5000 0 0 0 10000 50 0 0 0 0 0 0 0 0 0 0 0 0 0 50 5 16.0742931 16.0742931 1396 Yes Yes Yes No No Yes No No No No No No No Yes No No No No No Yes Yes No No No No No No Yes No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Yes No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 4 4 Yes Yes No Phone England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 5000 5000 0 1 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 5000 0 0 2000 0 3 1 0 1 1 100 0 0 0 0 0 100 0 0 2 4 12.5739346 12.5739346 1398 Yes No Yes No No Yes No No Yes No No No No Yes No Yes No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England London South Bangladeshi Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2000 0 0 0 2000 0 1 0 1 1 0 0 0 0 0 1 1 100 100 0 0 4 10.8361282 10.8361282 1405 Yes No Yes Yes No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Yes No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 1 to 10 Have not spent anything 11 to 20 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Rural Northern Ireland Northern Ireland North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 22 1800 0 0 0 0 1800 0 0 0 0 0 0 3600 2000 1000 0 0 600 0 1000 1000 0 0 200 200 0 2 0 0 2 4 3 2 0 0 0 0 0 0 0 0 2 2 0 2 0 0 2 2 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 3400 200 0 1200 2000 0 11 2 4 6 2 33.3333321 0 0 0 4 4 100 100 0 5 2 7.70751095 7.70751095 1414 Yes No Yes No No Yes No No Yes No No Yes No Yes Yes No No No No No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 11 to 20 Have not spent anything Most days (365) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 1 to 10 Have not spent anything 1 to 10 Have not spent anything 51 to 100 1 to 10 51 to 100 51 to 100 1 to 10 1% to 24% 1 to 10 25% to 49% None None 51 to 100 100% 51 to 100 100% None 1 to 10 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) No Yes No No Yes No No Yes No No No No No Yes Yes No No No No Yes Yes No No Yes No No No No Yes Yes Yes Yes Yes No Yes Yes No No No No No No No No No No Very confident (4) Yes No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban England East of England Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 21 1000 0 0 0 1000 0 4000 4000 0 0 0 0 2600 600 0 2000 0 0 0 2000 0 2000 0 0 0 0 5 3 0 12 50 0 5 0 0 0 0 0 0 0 0 7 50 0 5 0 0 7 50 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 7 50 0 0 0 0 0 0 0 0 0 0 3 0 5 0 0 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 28.5714283 100 100 0 0 0 100 100 0 0 0 0 0 9600 8000 1000 0 600 0 70 5 57 62 5 8.06451607 38.4615402 0 0 57 57 100 100 0 8 2 14.0663652 14.0663652 1416 Yes No No No No Yes No No No No No No No Yes No Yes No Yes No No No No No No No No No No No Yes No No Yes No No No Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None 1 to 10 50% to 74% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 31 to 40 31 to 40 31 to 40 None None None None 1 to 10 1% to 24% 31 to 40 100% 31 to 40 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Rural England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 4000 4000 0 0 0 0 3000 2000 0 1000 0 0 0 0 0 0 0 0 0 0 0 2 0 5 30 0 0 0 0 0 0 0 0 0 0 3 30 0 0 0 0 3 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 0 0 0 3 30 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66.6666641 33.3333321 100 100 0 0 0 100 100 0 0 0 0 0 7000 5000 0 0 2000 0 37 0 33 33 0 0 0 2 6.060606 33 33 100 100 0 4 3 16.0742931 16.0742931 1417 Yes Yes Yes No No Yes Yes No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No Yes No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time Any Yes No No No Yes No Yes 4 4 Yes No No Phone Urban England West Midlands Midlands Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 14.6100512 14.6100512 1426 Yes No Yes No No Yes No No No Yes No No No No No No No No No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No Yes No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes Yes No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% 21 to 30 21 to 30 Have not spent anything 11 to 20 None 11 to 20 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 101 to 200 51 to 100 51 to 100 None None None None None None 51 to 100 100% 51 to 100 100% None 21 to 30 Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) No No Yes No No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes No No Yes No 3 3 No Yes No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 6000 6000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 1 0 0 100 20 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 1 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 9000 9000 0 0 0 0 121 0 100 100 0 0 0 0 0 100 100 100 100 0 21 3 14.9710493 14.9710493 1430 Yes No No No No Yes No No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No Yes Yes No Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No Yes Yes No Yes Yes No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 31 to 40 31 to 40 Less often (6) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 50% to 74% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 21 to 30 1 to 10 11 to 20 Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 25% to 49% 25% to 49% None None None None 1 to 10 75% to 99% 75% to 99% 1 to 10 Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) 51 to 100 1 to 10 41 to 50 1 to 10 Less often (6) 2-3 times a week (130) 101 to 200 1 to 10 51 to 100 101 to 200 None None 100% 1 to 10 1% to 24% 101 to 200 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 25% to 49% None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) 100+ 51 to 100 31 to 40 11 to 20 1 to 10 Have not spent anything 101 to 200 1 to 10 101 to 200 101 to 200 11 to 20 1% to 24% 1 to 10 25% to 49% 1 to 10 1% to 24% 101 to 200 75% to 99% 101 to 200 75% to 99% None 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Don't know Strongly agree (4) Yes Yes No Yes No No No Yes No No No No No Yes Yes No Yes No Yes No No No No No No No No No Yes Yes No Yes No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban Scotland Scotland North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 24 4599 0 0 300 1200 3297 0 0 0 2500 1000 1500 500 0 0 500 0 0 0 5650 300 5000 350 500 0 500 5 1 4 14 104 5 2 0 0 0 3 0 2 1 2 10 100 5 4 1 2 10 103 5 4 1 2 4 0 5 0 0 0 3 1 2 2 0 0 0 7 0 0 0 0 0 5 103 0 0 0 0 0 0 0 0 0 1 0 2 4 1 0 100 0 50 0 100 100 0 0 0 100 100 0 0 0 100 40 37.5 0 0 83.3333359 90 0 100 6.79611635 100 100 100 40 0 0 100 11799 6800 3550 1099 350 0 133 5 120 125 16 12.8000002 25 9 7.19999981 109 108 99.1999969 99.0825653 0 8 2 14.8424444 14.8424444 1439 Yes Yes No No No Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None 1 to 10 100% None None 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 11 to 20 100% 11 to 20 100% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No Yes No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 4 4 No Yes No Phone Urban England London South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 1000 1000 0 0 0 0 1500 0 500 1000 0 0 0 1500 500 1000 0 1000 1000 0 10 1 0 2 1 5 0 0 0 0 0 0 10 0 0 1 0 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 1 0 0 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 5 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 100 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 19 0 11 11 0 0 0 11 100 11 11 100 100 0 8 4 10.8361282 10.8361282 1453 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No 100+ 100+ 100+ Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 21 to 30 21 to 30 21 to 30 100% None None None 100% 11 to 20 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 Have not spent anything 20 to 30 Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 Have not spent anything 1 to 10 100+ 51 to 100 21 to 30 21 to 30 21 to 30 100% None None None None None 100% None 31 to 40 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Rural England East of England Midlands White British White No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 24 17089 16000 0 1000 89 0 0 0 0 0 0 0 3000 1000 0 2000 0 0 0 3000 0 3000 0 2500 2500 0 50 0 0 5 0 6 0 0 0 0 0 0 30 0 0 0 0 0 30 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 5 0 6 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25589 8500 89 0 1000 16000 61 0 30 30 30 100 0 0 0 0 0 100 0 0 31 2 14.6100512 14.6100512 1454 Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No No No Yes No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes Yes Yes Yes 5+ 5+ No No Yes Phone England West Midlands Midlands Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 9.84904194 9.84904194 1472 Yes No Yes Yes No Yes Yes No No No No Yes No Yes No No No No No Yes Yes No Yes No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No Yes No No Yes Yes Yes No No No No No Yes Yes Yes No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 41 to 50 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 1 to 10 1 to 10 41 to 50 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes Yes Yes No No Yes No Yes No No No No No No No No Yes Yes No Yes No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No Yes No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 4 4 Yes Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 23 599 0 0 0 200 597 0 0 0 0 0 0 8000 5000 0 3000 0 0 0 0 0 0 0 1500 1500 0 3 0 0 3 0 3 2 0 0 0 0 0 1 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9899 4500 200 199 5000 0 9 2 1 3 3 100 0 0 0 0 0 100 0 0 6 4 14.6100512 14.6100512 1492 No No Yes No No Yes No No No No No Yes No No Yes No No No No No No Yes No Yes No No No Yes No No No Yes No No No No No No No No No No Once a day (365) No Yes No No Yes No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No Yes No No No Yes No No No No Yes No No Yes No No 41 to 50 31 to 40 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything About once a week (52) 1 to 10 None 1 to 10 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 21 to 30 21 to 30 11 to 20 11 to 20 11 to 20 11 to 20 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 51 to 100 31 to 40 20 to 30 Have not spent anything 1 to 10 75% to 99% 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 11 to 20 11 to 20 31 to 40 31 to 40 21 to 30 1 to 10 1 to 10 None None 1 to 10 25% to 49% None None None None None None 1 to 10 21 to 30 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) No Yes No Yes No No No No No No No No No Yes No No Yes No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No Yes Yes 4 4 Yes No No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 24 4335 1510 1815 1010 0 0 2010 2010 0 2015 2015 0 10075 2010 2010 1510 1515 1515 1515 5060 3030 2030 0 2015 2015 0 5 3 2 9 5 2 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 2 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 5 3 2 4 5 2 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 80 0 0 0 0 0 0 0 0 20470 10590 1515 1515 3525 3325 26 5 0 5 0 0 28.5714283 0 0 5 0 0 0 3 21 4 11.4285479 11.4285479 1494 Yes Yes Yes No No Yes No No Yes Yes No Yes No Yes No No No Yes No No Yes No Yes No No No Yes Yes No No Yes No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No Yes No Yes Yes No No Yes No Yes No Yes Yes No No Yes No Yes No Yes Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) About once a week (52) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% 1001+ 1 to 10 1 to 10 Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything About once a week (52) 2-3 times a week (130) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 31 to 40 21 to 30 11 to 20 31 to 40 None None None None 1 to 10 1% to 24% 31 to 40 100% 31 to 40 100% 1 to 10 None Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes No Yes Yes Yes No No Yes No No No No No Yes No Yes Yes No No Yes Yes No No No No Yes No No No No No No No No No Yes No No No No No Slightly confident (3) Yes No Yes No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Rural England North East North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 900 900 0 0 0 0 0 500 0 500 0 0 0 0 13 7 7 2 6 2 10 3 4 1 3 1 3 4 3 1 3 1 13 7 7 2 6 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 13 7 7 2 6 2 10000 2 2 1 1 1 3 1 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 100 100 0 0 50 0 100 100 0 0 0 100 100 0 0 0 100 100 1400 500 0 0 900 0 37 22 15 37 0 0 0 1 2.70270276 37 37 100 100 9 0 4 14.413929 14.413929 1495 Yes No Yes No No Yes No No Yes Yes Yes Yes No Yes No No No No No No Yes No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes Yes No Yes Yes Yes No Yes No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No Yes No No Yes No No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 3 3 About once a week (52) 51 to 100 51 to 100 51 to 100 51 to 100 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 1 to 10 1 to 10 Have not spent anything 51 to 100 Have not spent anything Have not spent anything Have not spent anything Less often (6) 21 to 30 1 to 10 1 to 10 None None None None None 1 to 10 50% to 74% None None None 11 to 20 Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 1 to 10 1 to 10 1 to 10 Have not spent anything 101 to 200 51 to 100 11 to 20 51 to 100 51 to 100 75% to 99% None None None None 11 to 20 75% to 99% 11 to 20 75% to 99% None 21 to 30 Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No No No No Yes No No No No No Yes Yes Yes No No No Yes No Yes No No No No No No Yes Yes Yes No Yes No Yes Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No Yes Yes No No No Yes Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Urban England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 4500 0 0 1000 500 3000 2000 2000 0 0 0 0 7800 800 0 7000 0 0 0 0 0 0 0 1400 1400 0 66 6 0 22 12 2 65 0 0 0 0 0 0 0 0 2 12 0 65 0 0 2 12 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 12 0 0 0 0 0 0 0 0 0 1 6 0 20 0 2 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 100 100 0 0 0 0 0 13700 11400 500 1000 800 0 108 65 14 79 65 82.2784805 0 0 0 14 12 97.4683533 85.7142868 0 29 2 10.8361282 10.8361282 1504 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 41 to 50 11 to 20 21 to 30 41 to 50 11 to 20 25% to 49% None None None 21 to 30 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 31 to 40 31 to 40 31 to 40 None None None None 31 to 40 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 1 to 10 1 to 10 Have not spent anything 31 to 40 11 to 20 51 to 100 11 to 20 51 to 100 51 to 100 11 to 20 25% to 49% None None None None 51 to 100 100% 51 to 100 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 3 3 No Yes No Phone Rural England West Midlands Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 22 1899 0 1500 0 399 0 0 0 0 0 0 0 3200 3200 0 0 0 0 0 0 0 0 0 400 400 0 45 0 0 0 36 1 15 0 0 0 0 0 30 0 0 0 36 0 45 0 0 0 36 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 44.4444427 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5499 400 399 0 3200 1500 82 15 66 81 20 24.6913586 0 0 0 61 61 100 100 0 1 3 14.6100512 14.6100512 1507 Yes No Yes Yes No Yes Yes No Yes Yes Yes Yes No Yes Yes Yes No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes No Yes Yes Yes Yes No Yes No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes Yes Yes No Yes No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No Yes Yes No No No Yes No No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 41 to 50 20 to 30 Every 2-3 weeks (30) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 51 to 100 51 to 100 11 to 20 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) About once a week (52) 11 to 20 11 to 20 1 to 10 11 to 20 1 to 10 50% to 74% None None None 1 to 10 25% to 49% None None 50% to 74% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 31 to 40 21 to 30 1 to 10 31 to 40 1 to 10 25% to 49% None None None None None 25% to 49% 11 to 20 11 to 20 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 20 to 30 Have not spent anything 11 to 20 Have not spent anything 51 to 100 51 to 100 11 to 20 51 to 100 21 to 30 25% to 49% None None None None 1 to 10 1% to 24% 1 to 10 25% to 49% None 1 to 10 Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Yes No No Yes Yes No No Yes No No No No No Yes Yes No No No Yes No No No No No No No No No Yes Yes Yes Yes No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No Yes No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 5+ 5+ Yes No No Phone Urban England South West South Any other white White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 23 0 0 0 0 0 0 7500 5000 2500 0 0 0 6000 1500 4500 0 0 0 0 0 0 0 0 1500 1500 0 6 7 1 17 40 2 1 3 1 15 30 1 5 2 0 2 10 0 6 5 1 17 40 1 0 3 1 10 10 1 0 0 0 0 0 0 0 0 0 0 0 0 5 6 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 0 0 100 100 60 0 0 100 100 100 0 0 0 100 58.8235283 0 0 29.4117641 0 58.8235283 25 0 0 0 25 100 0 0 0 100 10500 6500 2500 0 1500 0 73 51 19 70 25 35.7142868 0 0 0 45 8 47.1428566 17.7777786 0 3 5 12.5739346 12.5739346 1515 Yes No Yes No No Yes Yes No No No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes No Yes No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None None None None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 41 to 50 31 to 40 31 to 40 None None None None None None None None None None None 1 to 10 Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) No No Yes No Yes No No No Yes No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes Yes No Phone Rural Wales Wales Midlands White British White Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 21 0 0 0 0 0 0 1500 1500 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 500 500 0 0 2 0 10 30 1 0 0 0 0 0 0 0 0 0 10 30 0 0 0 0 10 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 2000 0 0 1000 0 43 0 40 40 0 0 0 0 0 40 0 0 0 0 3 3 14.6100512 14.6100512 1533 Yes No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 25% to 49% 1 to 10 20 to 30 Have not spent anything 20 to 30 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 1 to 10 100% 1 to 10 1% to 24% None None None 100% None 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No No Yes No Yes Yes 5+ 5+ Yes No No Phone Urban England East of England Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 21 2500 0 0 1000 0 1500 0 0 0 0 0 0 300 0 0 300 0 0 0 3000 0 3000 0 1000 1000 0 17 0 0 3 0 3 7 0 0 0 0 0 0 0 0 0 0 0 7 0 0 0 0 0 7 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 3 0 3 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 33.3333321 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5800 5300 0 500 0 0 23 7 0 7 7 100 4.347826 0 0 0 0 100 0 0 16 5 9.84904194 9.84904194 1534 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No 11 to 20 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything Have not spent anything 1 to 10 1 to 10 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) No Yes No No Yes Yes No Yes Yes No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England North West North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 1500 0 1000 500 0 0 0 0 0 0 0 0 700 700 0 0 0 0 0 0 0 0 0 1200 1200 0 10 0 0 0 5 2 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 10 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3400 1700 0 0 700 1000 17 0 5 5 0 0 0 0 0 5 5 100 100 0 12 2 14.9710493 14.9710493 1536 Yes No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 201 to 500 201 to 500 201 to 500 None None None None None None None Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 501 to 1000 501 to 1000 501 to 1000 None None None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Neither agree nor disagree (0) No No Yes Yes No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No Yes No No Yes No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 3 3 Yes Yes No Phone Urban Wales Wales Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 1200 1200 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 4 3 0 0 0 0 0 0 0 500 0 0 4 3 0 500 0 0 4 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 1200 0 0 0 1200 0 507 0 507 507 0 0 0 0 0 507 7 1.38067067 1.38067067 0 0 3 14.0663652 14.0663652 1542 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No Yes Yes No No Yes Yes No No No No No Several times a day (730) Yes No Yes Yes Yes Yes Yes No No No No Yes No Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes Yes Yes Yes No No No No Yes No Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 11 to 20 11 to 20 Less often (6) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 11 to 20 Have not spent anything Have not spent anything Have not spent anything 41 to 50 11 to 20 11 to 20 31 to 40 1 to 10 1% to 24% None None None None 21 to 30 50% to 74% 21 to 30 50% to 74% None 1 to 10 Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Slightly disagree (-2) Yes Yes Yes Yes Yes No Yes Yes No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No Yes No No No Yes No No No No No No Very confident (4) No Yes No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England East Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 24 0 0 0 0 0 0 3600 1800 1800 500 500 0 0 0 0 0 0 0 0 0 0 0 0 1200 1200 0 10 13 6 6 4 2 5 2 5 5 3 0 5 10 0 1 1 0 10 12 5 6 4 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 5 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 2 0 0 0 100 100 16.666666 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5300 3500 1800 0 0 0 41 20 17 37 2 5.40540552 0 0 0 35 25 72.9729767 71.4285736 0 4 3 14.6100512 14.6100512 1547 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) Yes No Yes No No No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None 1 to 10 25% to 49% None None None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 11 to 20 11 to 20 None None None None 1 to 10 25% to 49% None None None None None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Urban England North West North White British White Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 5 12 4 0 0 0 0 0 0 0 0 0 5 12 0 0 0 0 5 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41.6666679 0 0 0 0 0 0 0 3500 2000 0 0 1500 0 21 0 17 17 0 0 0 5 29.4117641 17 0 0 0 0 4 2 11.7109346 11.7109346 1556 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No Yes No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) No No Yes Yes No No No Yes Yes No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England Yorkshire and The Humber North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 1400 0 400 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 14.413929 14.413929 1561 Yes No Yes No No Yes No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes No Yes Yes No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No Yes Yes No No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No No No No No No Yes 51 to 100 51 to 100 31 to 40 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything 41 to 50 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 41 to 50 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 1 to 10 25% to 49% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 1 to 10 Have not spent anything About once a week (52) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 1 to 10 41 to 50 1 to 10 31 to 40 51 to 100 21 to 30 1 to 10 11 to 20 21 to 30 11 to 20 50% to 74% None None None None 1 to 10 25% to 49% 1 to 10 75% to 99% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes Yes No No No No No Yes Yes No No No No Yes Yes Yes Yes No No No No No No No No No No No Yes Yes No Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 1 1 No No Yes Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 21 5200 4000 1200 0 0 0 0 0 0 4500 0 4500 4199 3500 0 0 0 699 0 1570 1010 560 0 0 0 0 4 0 2 10 9 0 2 0 2 0 2 0 2 0 0 10 3 0 4 0 2 10 5 0 0 0 2 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 100 100 0 0 0 0 0 100 0 0 0 100 100 0 0 30 0 100 0 0 0 0 0 0 0 0 0 0 14459 560 4500 699 3500 5200 25 6 15 21 12 57.1428566 0 0 0 9 4 76.1904755 44.4444427 0 4 1 11.4285479 11.4285479 1564 Yes Yes Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Urban England South East South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 800 800 0 0 0 0 0 0 0 0 0 1800 1800 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2600 1800 0 0 800 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 4 16.0742931 16.0742931 1579 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) 201 to 500 51 to 100 101 to 200 201 to 500 None None 41 to 50 1% to 24% 201 to 500 75% to 99% 75% to 99% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 201 to 500 51 to 100 101 to 200 201 to 500 None None None None 41 to 50 1% to 24% 201 to 500 75% to 99% 201 to 500 75% to 99% None None Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England South West South White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300 0 0 0 0 0 100 0 0 0 0 0 200 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 294 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16.666666 98 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300 100 200 300 0 0 0 50 16.666666 300 294 98 98 0 0 4 15.476119 15.476119 1580 Yes No Yes No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 1 to 10 25% to 49% 25% to 49% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 11 to 20 None None None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% None 1 to 10 Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Slightly agree (2) No No Yes Yes No No No No No No No No No No No No No No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No Yes No No Yes No No No No No No Slightly confident (3) No Yes No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 4 4 Yes No No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 2 12 3 0 0 0 0 0 0 0 0 0 2 12 0 0 0 0 2 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 25 0 0 0 0 0 1000 1000 0 0 0 0 17 0 14 14 0 0 0 0 0 14 3 21.4285717 21.4285717 0 3 4 10.8361282 10.8361282 1598 Yes Yes No No No Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 4 4 No Yes No Phone Urban England South East South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 300 300 0 0 0 0 1400 800 300 300 0 0 0 800 300 500 0 0 0 0 0 1 0 1 11 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1900 1100 0 0 800 0 13 0 10 10 0 0 0 0 0 10 10 100 100 0 3 4 10.8361282 10.8361282 1624 Yes No No No No Yes No No No No No No No Yes No No No Yes No No Yes No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 100% Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 4 4 Yes Yes No Phone Urban England South West South White British White No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 100 100 0 0 0 0 1200 1200 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1300 100 0 0 1200 0 1 0 0 0 0 0 100 0 0 0 0 0 0 0 1 4 15.476119 15.476119 1628 Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No Yes Yes No No No No Yes Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 21 to 30 21 to 30 1 to 10 21 to 30 None None None None 21 to 30 100% 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 100+ 11 to 20 1 to 10 1 to 10 100+ 41 to 50 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 100% None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 41 to 50 1 to 10 1 to 10 Have not spent anything 21 to 30 21 to 30 1 to 10 21 to 30 1 to 10 1% to 24% 1 to 10 75% to 99% 1 to 10 1% to 24% 21 to 30 100% 21 to 30 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Neither agree nor disagree (0) Yes Yes No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time Any Yes No No No Yes Yes No 2 2 No Yes No Phone England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No Yes No Yes Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 50210 400 700 44400 4400 310 0 0 0 0 0 0 0 0 23 1 1 3 1 0 22 0 0 0 0 0 1 1 1 2 1 0 23 1 1 2 1 0 0 1 0 1 1 0 0 1 0 2 0 0 0 1 0 0 1 0 0 23 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 100 100 100 100 100 0 100 0 0 0 100 100 50 100 0 0 100 100 100 0 100 0 100 0 0 0 0 0 49510 44400 4400 310 400 0 29 22 6 28 3 10.7142859 75 2 7.14285707 25 25 100 100 0 1 2 15.476119 15.476119 1630 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) Yes No Yes No Yes Yes Yes No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No Yes No No No Yes No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 101 to 200 51 to 100 51 to 100 1 to 10 1% to 24% 50% to 74% 1 to 10 1% to 24% 21 to 30 25% to 49% 25% to 49% 11 to 20 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 25% to 49% 1 to 10 1% to 24% 1% to 24% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 11 to 20 Have not spent anything About once a week (52) 21 to 30 21 to 30 21 to 30 None None None None None None None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 101 to 200 101 to 200 31 to 40 101 to 200 11 to 20 1% to 24% 11 to 20 25% to 49% 1 to 10 1% to 24% 31 to 40 25% to 49% 31 to 40 25% to 49% None 21 to 30 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes Yes Yes Yes No Yes Yes No No No No No No No No No No Yes Yes Yes Yes No Yes Yes Yes No No Yes No No No No No No No No No No No No No No No No No Yes No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Rural England Yorkshire and The Humber North White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 3000 0 0 3000 0 0 0 0 0 0 0 0 3900 2400 0 1500 0 0 0 1500 0 1500 0 50 50 0 120 1 0 10 30 1 100 1 0 0 0 0 0 0 0 6 30 0 100 1 0 6 30 0 10 1 0 0 0 0 15 0 0 0 0 0 10 0 0 0 0 0 2 30 0 0 1 0 0 0 0 0 0 0 0 0 0 20 0 0 4 0 1 10 50 10 33.3333321 40 100 0 0 0 100 0 0 0 0 0 0 0 0 33.3333321 16.666666 16.666666 0 0 0 0 0 0 0 0 0 0 8450 6050 0 0 2400 0 162 101 36 137 11 8.02919674 41.6666679 10 7.29927015 126 31 30.6569347 24.6031742 0 25 4 14.413929 14.413929 1635 Yes No No No Yes Yes Yes No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything None None None Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Urban England North East North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 0 0 0 400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 14.9710493 14.9710493 1643 Yes Yes Yes No Yes Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes No Yes No No No No No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything 1 to 10 Less often (6) Most days (365) 101 to 200 1 to 10 51 to 100 101 to 200 None None 1 to 10 1% to 24% 101 to 200 100% 100% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything 20 to 30 Have not spent anything 1 to 10 Have not spent anything 101 to 200 11 to 20 51 to 100 101 to 200 1 to 10 1% to 24% None None 1 to 10 1% to 24% 101 to 200 100% 101 to 200 100% None None Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes Yes Yes No No No Yes No No No No No Yes Yes Yes Yes Yes No Yes Yes No No No No No No No Yes Yes No Yes Yes Yes No No No No No No Yes No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban England North West North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 23 2000 0 0 0 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 500 0 0 0 10 0 5 0 101 0 10 0 5 0 1 0 0 0 0 0 100 0 10 0 5 0 101 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 5 0 101 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 4.95049524 100 100 0 0 0 0 0 3000 0 2500 0 500 0 116 16 100 116 10 8.62068939 0 5 4.3103447 106 106 100 100 0 0 4 11.7109346 11.7109346 1645 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No Yes No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No No No No No No Yes No No No No Yes No No Yes No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Don't know Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Neither agree nor disagree (0) No No Yes Yes No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England Yorkshire and The Humber North Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 7 1 0 0 0 0 0 0 0 0 0 0 7 0 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2600 2000 0 0 600 0 8 0 7 7 0 0 0 0 0 7 7 100 100 0 1 3 10.0924006 10.0924006 1656 Yes No No No No Yes No No No No Yes No No Yes No No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No Yes Yes Yes No No No No Yes No No No No No No No No No No Yes No Yes Yes No Yes No No No No No Yes Yes No No Yes Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No Yes No Yes No No No No No No No Yes No No 100+ 100+ 100+ 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a week (52) Most days (365) Most days (365) 201 to 500 51 to 100 201 to 500 201 to 500 1 to 10 1% to 24% 75% to 99% None None 51 to 100 1% to 24% 1% to 24% 1001+ 41 to 50 41 to 50 51 to 100 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 75% to 99% 75% to 99% 41 to 50 11 to 20 11 to 20 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 11 to 20 1 to 10 1 to 10 None None 25% to 49% None None None None None None None 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a week (52) 41 to 50 1 to 10 31 to 40 41 to 50 None None None None 21 to 30 50% to 74% 50% to 74% 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 11 to 20 100+ 201 to 500 101 to 200 201 to 500 201 to 500 1 to 10 1% to 24% 51 to 100 50% to 74% None None 51 to 100 25% to 49% 51 to 100 25% to 49% 41 to 50 51 to 100 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes Yes Yes No Yes Yes No No No Yes Yes Yes No No No No Yes Yes Yes No No Yes No No No No Yes Yes Yes Yes No No No Yes No Yes Yes No Yes Yes No Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 1 1 No No Yes Phone Urban Scotland Scotland North White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes No No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 21 16100 13000 2000 1100 0 0 0 0 0 0 0 0 4600 1600 0 3000 0 0 0 0 0 0 0 4000 4000 0 420 3 4 14 42 4 100 3 4 0 2 0 250 0 0 4 40 0 350 3 4 4 42 0 10 0 0 0 0 0 60 0 0 4 0 0 0 0 0 0 0 0 0 70 0 3 0 25 0 11000 50 50 0 0 0 0 0 70 0 0 10 0 4 2.85714293 75 0 20.5882359 22.8571434 0 0 0 0 0 0 0 0 75 75 0 40 0 0 0 0 0 0 0 59.5238113 59.5238113 0 0 0 0 0 24700 8100 0 0 1600 15000 487 109 294 403 10 2.48138952 68.0851059 0 0 393 98 26.7990074 24.9363861 50 84 1 11.6103354 11.6103354 1669 Yes No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes Yes No No Yes No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes Yes No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 51 to 100 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything Have not spent anything 51 to 100 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes Yes No No Yes Yes No Yes Yes Yes No No Yes No No No No No No No Yes No No Yes No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No Yes No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England South West South Any other Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 10000 10000 0 0 0 0 7200 6000 0 1200 0 0 0 0 0 0 0 3000 3000 0 0 2 0 2 1 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 20200 14200 0 0 6000 0 7 0 1 1 0 0 0 0 0 1 1 100 100 0 6 2 10.8361282 10.8361282 1674 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 Have not spent anything Have not spent anything Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Yes No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 5+ 5+ Yes No No Phone England South East South White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 3000 0 0 3000 0 0 0 0 0 0 0 0 0 0 1 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 4 1 0 1 0 0 0 0 0 1 1 100 100 0 3 5 16.0742931 16.0742931 1678 Yes No No No No Yes No No Yes No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 21 to 30 11 to 20 11 to 20 11 to 20 100% 25% to 49% None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 11 to 20 11 to 20 11 to 20 100% 1 to 10 25% to 49% None None None 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No Yes No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England South West South White British White No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 20 500 0 0 500 0 0 0 0 0 0 0 0 1200 1200 0 0 0 0 0 0 0 0 0 0 0 0 21 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 100 47.6190491 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1700 500 0 0 1200 0 21 0 20 20 20 100 47.6190491 0 0 0 0 100 0 0 1 4 16.0742931 16.0742931 1680 Yes No Yes No No Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Don't know Don't know Slightly agree (2) Strongly disagree (-4) No No No No No No No No Yes No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 3 3 No Yes No Phone Urban England South East South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 10.8361282 10.8361282 1687 Yes Yes No Yes No Yes No No Yes No No No No Yes Yes No No No No No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None None None None Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 101 to 200 101 to 200 101 to 200 None None None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% None 1 to 10 Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No Very confident (4) Yes No No No No No No No No No No No No No No No No No No Yes No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban England East of England Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes No CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 900 600 0 300 0 0 0 0 0 0 0 0 0 0 20 0 0 2 90 0 0 0 0 0 0 0 20 0 0 1 90 0 20 0 0 1 90 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 900 300 0 0 600 0 112 0 111 111 0 0 0 0 0 111 1 0.9009009 0.9009009 0 1 2 9.84904194 9.84904194 1693 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything Have not spent anything Less often (6) 51 to 100 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 41 to 50 Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 51 to 100 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 51 to 100 Strongly agree (4) Don't know Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Don't know No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 22 3000 0 0 3000 0 0 0 0 0 0 0 0 1666 666 0 1000 0 0 0 2000 0 2000 0 2000 2000 0 51 2 0 1 1 3 0 0 0 0 0 0 1 2 0 0 1 0 1 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 1 0 0 0 0 0 0 0 0 0 50 0 0 1 0 3 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 8666 8000 0 0 666 0 58 0 4 4 0 0 0 0 0 4 4 100 100 0 54 3 14.9710493 14.9710493 1709 Yes No Yes Yes No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No Once a day (365) Yes No No No Yes Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 3 3 Every 2-3 weeks (30) 51 to 100 41 to 50 41 to 50 21 to 30 50% to 74% None 11 to 20 25% to 49% None None 50% to 74% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 1 to 10 20 to 30 Have not spent anything 51 to 100 41 to 50 1 to 10 51 to 100 21 to 30 50% to 74% None None 11 to 20 25% to 49% 1 to 10 25% to 49% 1 to 10 50% to 74% None 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 5+ 5+ No Yes No Phone Rural England South East South White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 22 4500 0 0 500 1000 3000 0 0 0 0 0 0 5000 3000 0 2000 0 0 0 0 0 0 0 3000 3000 0 51 0 0 5 10 10 50 0 0 0 0 0 0 0 0 0 10 0 50 0 0 0 10 0 30 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 1 0 0 5 0 10 60 0 40 0 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 10500 5500 1000 1000 3000 0 76 50 10 60 30 50 0 20 33.3333321 30 10 66.6666641 33.3333321 0 16 5 10.8361282 10.8361282 1730 Yes No Yes No No Yes No No No No Yes Yes No Yes No No No Yes No No No No Yes No No No No Yes No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 1% to 24% 1% to 24% Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 100% None None 1 to 10 50% to 74% 50% to 74% Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1% to 24% 1 to 10 25% to 49% None None 1 to 10 25% to 49% 1 to 10 25% to 49% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Slightly confident (3) No No No No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 4 4 Yes Yes No Phone Urban Wales Wales Midlands White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 21 0 0 0 0 0 0 10000 10000 0 0 0 0 2500 2500 0 0 0 0 0 0 0 0 0 0 0 0 5 3 0 0 3 0 0 0 0 0 0 0 5 0 0 0 3 0 5 0 0 0 3 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 20 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33.3333321 100 0 50 66.6666641 0 0 0 0 0 12500 10000 0 0 2500 0 11 0 8 8 1 12.5 25 0 0 7 2 37.5 28.5714283 0 3 4 11.4285479 11.4285479 1732 Yes No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No Yes No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 9.84904194 9.84904194 1738 Yes No No No No Yes No No Yes Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No Yes No No Yes No No 31 to 40 Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 1 to 10 1 to 10 About once a month (12) About once a month (12) 51 to 100 21 to 30 11 to 20 31 to 40 31 to 40 100% 25% to 49% None None 100% 11 to 20 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 11 to 20 Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 11 to 20 1 to 10 11 to 20 Have not spent anything 101 to 200 21 to 30 101 to 200 101 to 200 31 to 40 25% to 49% 11 to 20 25% to 49% None None 51 to 100 100% 51 to 100 100% None 11 to 20 Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) No No No No No No No No Yes No Yes No No No No No Yes Yes Yes Yes No No No Yes No No No No Yes No Yes No No No Yes No No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban Wales Wales Midlands White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 22 3900 0 0 1000 2000 900 0 0 0 0 0 0 1200 1200 0 0 0 0 0 1500 0 1500 0 300 300 0 53 0 0 3 90 1 25 0 0 0 0 0 15 0 0 3 90 0 40 0 0 3 90 0 40 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 90 0 0 0 0 0 0 0 0 0 13 0 0 0 0 1 100 37.7358475 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 6300 2800 2000 300 1200 0 147 25 108 133 40 30.0751877 37.0370369 0 0 93 93 100 100 0 14 2 14.6100512 14.6100512 1760 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 10.0924006 10.0924006 1782 Yes Yes No No No Yes No No Yes No No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No Yes No No No No No No No Several times a day (730) No No No No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No 51 to 100 41 to 50 3 11 to 20 Have not spent anything Have not spent anything 11 to 20 11 to 20 2-3 times a week (130) 501 to 1000 501 to 1000 501 to 1000 501 to 1000 100% None 41 to 50 1% to 24% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 11 to 20 Have not spent anything 1 to 10 Have not spent anything 41 to 50 501 to 1000 501 to 1000 501 to 1000 501 to 1000 100% None None 41 to 50 1% to 24% None 100% None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ No Yes No Phone Urban England London South White British White No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 20 6000 3000 1500 0 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 2000 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 1000 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 5 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 2000 0 500 0 4500 1000 0 1000 1000 1000 100 0 50 5 0 0 100 0 0 0 5 10.8361282 10.8361282 1783 Yes No No No No Yes No No No Yes No Yes Yes Yes No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No No Yes Yes No Yes No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Don't know Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes Yes Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Urban England East of England Midlands White British White Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 1000 0 0 1000 0 0 0 0 0 0 0 0 2 1 1 0 0 0 0 1 0 0 0 0 2 0 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 1000 0 0 1000 0 4 1 2 3 0 0 0 0 0 3 3 100 100 0 1 4 9.84904194 9.84904194 1786 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes No No Yes No 4 4 Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 11.4285479 11.4285479 1802 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 51 to 100 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Most days (365) 2-3 times a week (130) 51 to 100 31 to 40 21 to 30 51 to 100 None None 75% to 99% None None 41 to 50 50% to 74% 50% to 74% 11 to 20 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 1 to 10 Have not spent anything 2-3 times a week (130) 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 20 to 30 11 to 20 Have not spent anything Have not spent anything 11 to 20 51 to 100 31 to 40 21 to 30 51 to 100 None None 11 to 20 75% to 99% None None 41 to 50 50% to 74% 41 to 50 50% to 74% 1 to 10 21 to 30 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 21 5100 1000 1000 1100 2000 0 99 99 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 90 1 1 0 0 1 40 0 0 0 0 0 30 0 0 0 0 0 70 0 0 0 0 0 0 0 0 0 0 0 15 1 1 0 0 1 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 2 0 0 0 0 20 1 1 0 0 1 0 75 0 71.4285736 71.4285736 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 6699 2699 2000 0 0 2000 93 40 30 70 0 0 78.2608719 0 0 70 50 71.4285736 71.4285736 2 23 3 10.0924006 10.0924006 1809 Yes No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes No No No No No No Yes Yes Yes Yes No Yes No No No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No No No Yes No No Yes No Yes No No No No No Yes Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) 201 to 500 101 to 200 201 to 500 201 to 500 None None None None 201 to 500 50% to 74% 50% to 74% Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) 11 to 20 1 to 10 1 to 10 Most days (365) Most days (365) 51 to 100 31 to 40 41 to 50 51 to 100 1 to 10 1% to 24% None 51 to 100 75% to 99% 11 to 20 1% to 24% 25% to 49% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 21 to 30 1 to 10 11 to 20 21 to 30 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 501 to 1000 201 to 500 201 to 500 501 to 1000 1 to 10 1% to 24% None None 51 to 100 1% to 24% 201 to 500 50% to 74% 201 to 500 50% to 74% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Don't know Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone England London South Indian Minority Ethnic Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 24 0 0 0 0 0 0 1500 1000 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 94 25 10 0 0 200 40 10 10 0 0 300 50 15 0 0 0 500 90 25 10 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 83 0 0 0 0 0 300 18 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 60 60 7.77777767 0 92.2222214 21.6867466 27.7777786 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1000 500 0 0 0 629 260 365 625 7 1.12 0 83 13.2799997 618 318 52 51.4563103 0 4 2 15.476119 15.476119 1817 Yes No No No No Yes No No Yes Yes No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) 51 to 100 31 to 40 41 to 50 51 to 100 None None None None None None None Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 100% None None 1 to 10 100% 100% 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 1 to 10 Have not spent anything 1 to 10 Have not spent anything 101 to 200 41 to 50 51 to 100 101 to 200 1 to 10 1% to 24% 1 to 10 25% to 49% None None 11 to 20 1% to 24% 11 to 20 1% to 24% None 1 to 10 Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes Yes Yes No No No No Yes No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Rural England South West South White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No No Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 2000 1000 1000 1700 1000 0 700 0 0 0 700 0 700 0 1000 1000 0 90 0 4 2 10 4 40 0 3 0 0 0 50 0 0 0 10 0 90 0 3 0 10 0 0 0 1 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 10 0 0 0 0 0 0 0 0 0 0 0 1 2 0 4 0 0 0 0 0 0 0 0 0 0 33.3333321 100 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5400 3400 1000 0 1000 0 110 43 60 103 1 0.970873773 25 0 0 102 12 12.6213589 11.7647057 0 7 4 16.0742931 16.0742931 1827 Yes No No No No Yes No No No Yes No Yes Yes Yes No No No No No No Yes No Yes No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes Yes No Yes No No No Yes No No No Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No Yes No No Yes No No No No Yes Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 51 to 100 31 to 40 51 to 100 51 to 100 None None 11 to 20 1% to 24% None None None Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 100+ 51 to 100 51 to 100 Have not spent anything 51 to 100 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) 1 to 10 Have not spent anything 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 11 to 20 None 11 to 20 100+ 51 to 100 Have not spent anything Have not spent anything 51 to 100 Have not spent anything 101 to 200 41 to 50 51 to 100 101 to 200 1 to 10 1% to 24% None None 11 to 20 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% None 11 to 20 Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Yes No Yes Yes No No Yes Yes No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No Yes Yes Yes Yes Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes No Yes No No Yes Yes No No Yes Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Urban Wales Wales Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 12000 6000 0 6000 0 0 0 1000 0 1000 0 3000 3000 0 100 0 1 9 6 12 40 0 1 0 0 0 60 0 0 1 6 0 100 0 1 1 6 0 0 0 1 1 3 0 0 0 0 0 0 0 15 0 0 0 0 0 1 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 8 0 12 0 0 15 0 0 0 0 0 0 0 100 0 0 0 100 100 0 0 100 0 100 50 0 0 100 100 0 0 0 0 0 16000 10000 0 0 6000 0 128 41 67 108 5 4.62962961 0 15 13.8888893 103 3 7.40740728 2.91262126 0 20 1 9.84904194 9.84904194 1823 Yes No No Yes No Yes No No No No No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes Yes Yes No Yes No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 11 to 20 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None 1 to 10 50% to 74% 1 to 10 50% to 74% None 1 to 10 Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes Yes No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban Wales Wales Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 1500 1500 0 3 0 0 0 3 9 0 0 0 0 3 6 3 0 0 0 0 0 3 0 0 0 3 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4500 1500 0 0 3000 0 15 9 3 12 0 0 0 0 0 12 6 50 50 0 3 2 14.6100512 14.6100512 1832 Yes Yes Yes No No No No No No No No No No No No No No Yes No Yes Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes Yes No Yes Yes Yes No No No No No Yes Yes Yes No Yes No No No No No No Yes No Yes Yes No No No No No No No Yes No No Yes Yes No No No No No No Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No No Yes No Yes Yes No No No No Yes Yes Yes Yes Yes Yes No No 3 3 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 75% to 99% 1 to 10 50% to 74% 1 to 10 50% to 74% 50% to 74% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 1 to 10 Have not spent anything Have not spent anything 11 to 20 20 to 30 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% 1 to 10 50% to 74% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No Yes No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England East of England Midlands African Minority Ethnic Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes No Yes Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No No Yes Yes No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 23 3000 1500 1000 500 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 8 1 2 5 0 0 3 1 1 0 0 0 3 0 1 5 0 0 6 1 2 5 0 0 2 1 0 0 0 0 3 0 0 0 0 0 4 1 0 0 0 0 0 2 0 0 0 0 0 2 2 2 1 0 0 0 0 2 0 0 0 0 0 33.3333321 75 66.6666641 50 66.6666641 100 0 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 500 0 0 2000 2500 16 5 9 14 3 21.4285717 60 5 35.7142868 11 2 35.7142868 18.181818 3 2 2 14.0663652 14.0663652 1833 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No Yes Yes No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 14.0663652 14.0663652 1836 Yes No Yes No No Yes No No Yes No No Yes No No No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England Yorkshire and The Humber North Any other white White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Kids 13 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 599 599 0 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2099 2099 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3.06790113 3.06790113 2 Yes No No No No No No No No No No No No Yes No No No No No No Yes No Yes No No No No No No No No Yes Yes No No Yes Yes No No No No No Several times a day (730) Yes No Yes Yes No No No Yes No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No Yes No No No No No No No No No Yes Yes Yes No No No Yes No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No No No Yes Yes No 5+ 5+ No Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 300 300 0 300 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 2 1 2 0 0 0 1 0 0 0 3 0 0 1 2 0 3 0 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 1 1 2 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 600 600 0 0 0 0 9 1 6 7 0 0 0 0 0 7 7 100 100 0 2 5 15.476119 15.476119 1838 Yes No No No No Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Don't know Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) No No Yes Yes No No No Yes Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Rural Scotland Scotland North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 500 0 0 500 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4.59556198 4.59556198 3 No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No No No No No No No No Yes No No No No No No No No Not particularly confident (2) No No No No No No No No No No No Yes No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 No Yes No Phone Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 2000 2000 0 0 0 0 1000 0 0 1000 0 0 0 1000 0 1000 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 9.84904194 9.84904194 1839 Yes No No No No No No No Yes Yes No No No Yes No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 51 to 100 41 to 50 41 to 50 None None None None None None 41 to 50 100% 41 to 50 100% None 1 to 10 Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Yes Yes No No No No No Yes No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 50 2 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2000 1000 0 0 1000 0 52 0 50 50 0 0 0 0 0 50 50 100 100 0 2 4 10.8361282 10.8361282 1849 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 75% to 99% None 1 to 10 25% to 49% None None 75% to 99% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 41 to 50 31 to 40 1 to 10 Have not spent anything 1 to 10 Have not spent anything 21 to 30 1 to 10 1 to 10 11 to 20 11 to 20 75% to 99% None None 1 to 10 25% to 49% None None None 75% to 99% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Urban England South West South White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 23 1000 0 0 0 1000 0 0 0 0 3000 3000 0 1000 500 500 0 0 0 0 0 0 0 0 500 500 0 20 0 2 0 0 7 10 0 0 0 0 0 10 0 0 0 0 0 20 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 7 75 0 25 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 3500 1000 0 500 0 29 10 10 20 15 75 0 5 25 5 0 75 0 0 9 3 16.0742931 16.0742931 1853 Yes Yes Yes Yes No Yes Yes No Yes Yes No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) No No Yes No No No No No No No No No Yes No Yes Yes Yes Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 41 to 50 3 11 to 20 1 to 10 11 to 20 Have not spent anything Have not spent anything 51 to 100 None 51 to 100 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 11 to 20 Have not spent anything Have not spent anything 1 to 10 20 to 30 51 to 100 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 51 to 100 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Wales Wales Midlands White British White No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Kids 15 4500 1500 1000 2000 0 0 0 0 0 0 0 0 800 800 0 0 0 0 0 0 0 0 0 0 0 0 60 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5300 2000 0 0 800 2500 61 1 0 1 1 100 0 0 0 0 0 100 0 0 60 0 3.06872106 3.06872106 4 Yes No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes Yes No No No No No No Yes No No No No No 100+ 3 3 Have not spent anything 3 1 to 10 51 to 100 51 to 100 About once a month (12) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None None 11 to 20 100% 11 to 20 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 41 to 50 1 to 10 20 to 30 1 to 10 20 to 30 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No Yes No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 4 4 No Yes No Phone Rural Scotland Scotland North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 20 15500 3000 0 3000 500 9000 0 0 0 0 0 0 1700 700 0 1000 0 0 0 0 0 0 0 1000 1000 0 15 0 0 2 0 3 6 0 0 0 0 0 6 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 2 0 3 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12200 5000 500 3000 700 3000 20 6 6 12 0 0 0 12 100 12 12 100 100 0 8 4 14.8424444 14.8424444 1858 Yes No Yes No No Yes No No Yes No No No No Yes No No No No No Yes Yes No No No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No Yes No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 31 to 40 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 31 to 40 1 to 10 Have not spent anything 31 to 40 Have not spent anything 21 to 30 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 21 to 30 Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No Yes Yes Yes Yes No No No No Yes No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes CAWI Kids 13 2000 0 0 2000 0 0 0 0 0 0 0 0 6000 4000 0 2000 0 0 0 0 0 0 0 1000 0 1000 20 0 0 2 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 9000 4000 1000 0 4000 0 25 3 0 3 3 100 0 0 0 0 0 100 0 0 22 0 2.70298147 2.70298147 5 Yes No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No Yes No No Yes No No No Yes Yes Yes No No No Yes No No No No Yes No No No No No No No No No No Yes No No No Yes No No Yes No No No Yes Yes Yes No No No Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 Less often (6) Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 50% to 74% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 41 to 50 20 to 30 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 25% to 49% 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 100+ 51 to 100 31 to 40 1 to 10 11 to 20 Have not spent anything 21 to 30 1 to 10 1 to 10 11 to 20 11 to 20 75% to 99% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 100% 1 to 10 100% 1 to 10 1 to 10 Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Yes Yes No No No No No Yes No No No No No Yes No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 2100 0 0 1500 0 600 5000 3000 2000 2000 2000 0 2500 1500 0 1000 0 0 0 2000 1000 1000 0 1500 0 1500 8 2 1 2 3 5 3 0 0 1 0 5 3 1 0 0 0 0 6 1 0 1 0 5 6 1 0 1 0 3 0 0 1 0 0 0 3 0 0 0 0 2 0 0 0 0 0 0 2 3 2 2 0 0 0 0 0 2 1 1 1 3 0 100 0 50 0 100 100 0 0 0 100 0 100 0 0 0 100 0 0 0 0 100 0 0 0 0 0 60 0 40 100 100 13700 8500 3500 200 1500 0 21 9 4 13 11 84.615387 5.26315784 5 38.4615402 2 2 100 100 2 8 0 3.06872106 3.06872106 6 Yes No No No No Yes No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No Yes No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes No No Yes Yes No No Yes No No No Yes Yes Yes No Yes No Yes No No No No No No No No No No No No No Yes No Yes No No Yes Yes No No Yes No No No Yes Yes Yes No Yes No Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No Yes No No No Yes Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) 31 to 40 11 to 20 11 to 20 31 to 40 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ Have not spent anything 1 to 10 Have not spent anything 100+ Have not spent anything 51 to 100 51 to 100 21 to 30 51 to 100 1 to 10 1% to 24% None None None None 31 to 40 25% to 49% 31 to 40 25% to 49% None None Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes Yes Yes Yes No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes Yes Yes No No No Yes No No No No Yes No No No No No Yes Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No Yes No No Yes No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 3 3 Yes Yes No Phone Urban England London South Any other Asian Minority Ethnic Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 32000 30000 0 0 0 0 2000 0 0 0 0 500 0 500 40 1 30 2 0 3 20 0 30 1 0 3 20 1 0 1 0 0 40 1 30 2 0 3 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 30 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 66.6666641 0 0 100 100 32500 0 500 0 32000 0 76 54 22 76 2 2.63157892 0 0 0 74 32 44.7368431 43.2432442 0 0 3 16.0742931 16.0742931 1862 Yes No Yes Yes Yes Yes No No Yes No No Yes No Yes No Yes No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes No No Yes No No No No No No Yes Yes No No No Yes Yes No No No No Yes No No No No No Yes No No No No Yes Yes No No Yes No No No No No No Yes Yes No No No Yes Yes No No No No Yes No No No No No Yes No No No No Yes No Yes No No No No No Yes No Yes Yes No No No No Yes No Yes No No No No No 31 to 40 Have not spent anything Have not spent anything Have not spent anything 3 1 to 10 Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 2-3 times a week (130) 41 to 50 11 to 20 11 to 20 31 to 40 11 to 20 50% to 74% 50% to 74% 11 to 20 50% to 74% 11 to 20 100% 100% 11 to 20 11 to 20 11 to 20 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 41 to 50 1 to 10 Have not spent anything Have not spent anything 21 to 30 1 to 10 Have not spent anything 1 to 10 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 None None 100% None None 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 11 to 20 Have not spent anything 11 to 20 Have not spent anything Most days (365) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% 21 to 30 21 to 30 Have not spent anything 21 to 30 None 21 to 30 100+ 100+ 11 to 20 Have not spent anything 1 to 10 Have not spent anything 101 to 200 21 to 30 51 to 100 51 to 100 11 to 20 1% to 24% 21 to 30 25% to 49% 11 to 20 1% to 24% 51 to 100 100% 51 to 100 100% 11 to 20 51 to 100 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Don't know Yes Yes No No No Yes No No No No No No No Yes No Yes No No No No No No Yes No No No No No Yes Yes No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Very confident (4) No No No No No No No No No No No No No Yes No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South West South White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Kids 14 3500 0 0 3000 500 0 5000 5000 0 3000 3000 0 5000 0 0 3000 1000 0 1000 2000 0 2000 0 3000 3000 0 50 3 2 11 50 30 20 0 0 5 0 0 20 0 0 0 50 0 40 0 0 5 50 0 20 0 0 0 0 0 20 0 0 6 0 0 20 0 0 0 0 0 3 20 0 0 5 50 0 20 20 20 0 0 0 0 0 10 3 2 6 0 30 50 66.6666641 50 100 100 0 0 0 0 0 0 0 0 0 0 0 100 0 60 100 100 0 0 0 100 100 0 0 0 0 0 21500 19000 1500 0 1000 0 146 25 70 95 20 21.0526314 36.6197166 20 21.0526314 75 75 100 100 20 51 0 2.70298147 2.70298147 7 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 None None None Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England East of England Midlands Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 23 1200 0 1200 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1800 0 0 0 600 1200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 14.0663652 14.0663652 1885 Yes Yes Yes No No Yes No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes No No Yes No No No No Yes Yes Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No Yes Yes Yes Yes Yes Yes No 100+ 100+ 100+ Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) About once a week (52) 21 to 30 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% 100% None None 21 to 30 100% 100% Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 Every 2-3 weeks (30) Most days (365) 51 to 100 21 to 30 21 to 30 51 to 100 1 to 10 1% to 24% None None None 41 to 50 75% to 99% 75% to 99% 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything 20 to 30 Have not spent anything 11 to 20 100+ 51 to 100 31 to 40 41 to 50 51 to 100 1 to 10 1% to 24% 1 to 10 25% to 49% None None 51 to 100 75% to 99% 51 to 100 75% to 99% None None Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes Yes Yes No Yes No Yes No No No No No No No No Yes No Yes No No Yes No No Yes No No No Yes Yes Yes Yes Yes No Yes Yes No No No No No No No No No No No No Yes Yes No No Yes No No No Yes Yes No No Yes No No No No No No No No No No No No Yes Yes Yes Yes No Yes No Yes Yes No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 4 4 No No Yes Phone Urban England South East South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 24 18500 17500 0 0 1000 0 0 0 0 2000 0 2000 1800 1800 0 0 0 0 0 0 0 0 0 0 0 0 23 0 55 0 0 0 3 0 30 0 0 0 20 0 25 0 0 0 23 0 55 0 0 0 2 0 6 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 21 0 42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.69565201 100 0 100 100 0 0 0 0 0 10.909091 0 0 85.7142868 87.272728 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22300 0 3000 0 1800 17500 78 33 45 78 8 10.2564106 25 0 0 70 63 91.0256424 90 0 0 4 12.5739346 12.5739346 1891 Yes No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No Yes No No No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Strongly disagree (-4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) No Yes Yes No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South West South White British White Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No CAWI Kids 12 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 2 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 2.70298147 2.70298147 8 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No 2-4 days a week (156) Yes No No Yes Yes No No No No No No Yes No Yes No No No No No No No No Yes Yes Yes No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No Yes No No No No Yes No 51 to 100 31 to 40 3 1 to 10 Have not spent anything 1 to 10 31 to 40 31 to 40 2-3 times a week (130) Every 2-3 weeks (30) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None 1 to 10 25% to 49% None None 25% to 49% 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) 20 to 30 20 to 30 Have not spent anything About once a month (12) 1 to 10 100% 1 to 10 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 31 to 40 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 25% to 49% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 11 to 20 31 to 40 31 to 40 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 25% to 49% None None None 25% to 49% 1 to 10 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No No Yes Yes No No No Yes No No No No No No Yes Yes Yes No No No No No No No No No No No No No Yes Yes No No No Yes No No Yes No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 12 8400 3000 1000 0 800 3600 3000 3000 0 2700 2700 0 6300 3500 1300 1000 0 0 500 1000 1000 0 0 800 800 0 6 2 2 3 1 1 2 0 0 0 0 0 4 0 0 0 0 0 6 0 0 0 0 0 2 0 0 0 0 0 0 2 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 6 3 3 3 0 0 0 0 0 2 2 3 1 1 33.3333321 0 33.3333321 0 33.3333321 0 100 0 0 0 0 0 0 0 0 0 33.3333321 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17500 7500 800 1200 4000 4000 15 2 4 6 2 33.3333321 27.272728 2 33.3333321 4 0 33.3333321 0 6 9 0 2.9604094 2.9604094 9 Yes No Yes Yes Yes Yes Yes No No No No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No Yes No No No Yes No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) Most days (365) 101 to 200 21 to 30 51 to 100 101 to 200 None None 1 to 10 1% to 24% 101 to 200 100% 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 1 to 10 1 to 10 Every 2-3 weeks (30) Most days (365) 21 to 30 11 to 20 1 to 10 21 to 30 1 to 10 1% to 24% 50% to 74% 1 to 10 25% to 49% 11 to 20 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 1% to 24% None None None 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None None None Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 41 to 50 11 to 20 21 to 30 41 to 50 None None 1 to 10 1% to 24% None None None 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 100+ 31 to 40 20 to 30 Have not spent anything 41 to 50 Have not spent anything 201 to 500 51 to 100 101 to 200 201 to 500 1 to 10 1% to 24% 1 to 10 75% to 99% 21 to 30 1% to 24% 101 to 200 50% to 74% 101 to 200 50% to 74% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Yes Yes Yes Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes No No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 22 899 0 0 0 899 0 2000 1000 1000 0 0 0 5000 4500 0 0 500 0 0 1000 0 1000 0 1498 1498 0 126 24 10 11 50 2 26 19 5 5 20 0 100 4 5 6 30 0 126 23 10 11 50 0 0 5 0 0 0 0 0 4 0 0 0 2 1 10 2 0 10 0 0 126 18 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 0 0 0.793650806 100 100 21.73913 66.6666641 43.47826 100 100 0 0 20 0 0 0 0 0 0 0 0 0 0 20 0 0 0 100 0 0 0 10397 3498 2399 0 4500 0 223 75 145 220 5 2.27272725 75 23 10.454545 215 144 67.727272 66.9767456 0 3 1 14.413929 14.413929 1897 Yes Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No Yes No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 11 to 20 11 to 20 11 to 20 None None 1 to 10 1% to 24% 11 to 20 100% 100% Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 21 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything 11 to 20 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 Have not spent anything Have not spent anything 31 to 40 Have not spent anything 11 to 20 11 to 20 11 to 20 None None None None 1 to 10 1% to 24% 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Slightly disagree (-2) Don't know Yes Yes No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 5+ 5+ Yes No No Phone Urban England London South Indian Minority Ethnic No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 6200 2500 1200 1000 0 0 1500 2000 0 2000 0 0 0 0 12 0 0 6 0 0 0 0 0 0 0 0 12 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 16.666666 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 3000 0 0 4000 0 18 0 12 12 0 0 0 2 16.666666 12 12 100 100 0 6 5 15.476119 15.476119 1901 Yes No Yes Yes Yes No Yes No No No No No No Yes No No No Yes Yes Yes Yes Yes No No No No No No No No No Yes No Yes No No No No No No No No Several times a day (730) Yes No Yes No No No No No No No No Yes No Yes Yes No No No No No No No Yes Yes Yes Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No Yes No Yes Yes No No No No No Yes Yes Yes No No No No Yes Yes Yes No No No No No 3 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 75% to 99% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 1 to 10 1 to 10 Have not spent anything Most days (365) 1 to 10 None 1 to 10 1 to 10 51 to 100 51 to 100 Have not spent anything 21 to 30 1% to 24% 21 to 30 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 50% to 74% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 75% to 99% 1 to 10 1 to 10 1 to 10 Have not spent anything 31 to 40 1% to 24% 31 to 40 51 to 100 51 to 100 1 to 10 1 to 10 1 to 10 1 to 10 51 to 100 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 21 to 30 25% to 49% 1 to 10 75% to 99% 1 to 10 100% 1 to 10 100% 1 to 10 51 to 100 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Yes Yes Yes Yes Yes Yes No No No No No No No Yes Yes Yes No No Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 2100 300 300 300 300 900 300 300 0 5030 5030 0 1800 300 400 500 0 0 600 1000 500 500 0 404 404 0 11 4 30 6 5 34 2 0 0 0 0 0 5 0 0 0 0 0 7 0 0 0 0 0 5 0 0 0 0 0 5 0 3 4 4 6 6 0 0 0 0 0 0 2 0 0 0 0 0 4 3 3 4 0 0 0 0 4 4 30 6 5 34 71.4285736 55.5555573 85.7142868 100 100 0 0 0 0 0 0 10 0 0 0 0 66.6666641 0 0 0 0 0 80 0 0 0 0 17.6470585 0 0 0 9134 7034 300 300 900 600 90 2 5 7 5 71.4285736 25 6 85.7142868 2 2 100 100 7 83 0 3.18014598 3.18014598 10 No No No No Yes No No Yes No Yes Yes No No No No No No Yes No No Yes No No No No No No Yes No Yes No No No No No No No No No No No No Once a day (365) Yes No Yes No Yes No No No No No No Yes No Yes No Yes No Yes No No No No Yes Yes No Yes No Yes No No No No No Yes No Yes No Yes No No No No No No Yes No No No Yes No No No No No No Yes Yes No Yes No No No No No No No Yes No Yes No Yes No No No Yes Yes No Yes No No No No Yes Yes No Yes No No No No 51 to 100 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 51 to 100 51 to 100 2-3 times a week (130) About once a week (52) About once a week (52) 21 to 30 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 75% to 99% 1 to 10 50% to 74% 1 to 10 50% to 74% 75% to 99% 1 to 10 1 to 10 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 31 to 40 20 to 30 11 to 20 2-3 times a week (130) 41 to 50 21 to 30 21 to 30 11 to 20 75% to 99% 50% to 74% 11 to 20 50% to 74% 1 to 10 75% to 99% 75% to 99% 11 to 20 11 to 20 11 to 20 Have not spent anything 2-3 times a week (130) 1 to 10 50% to 74% 11 to 20 1 to 10 31 to 40 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 2-3 times a week (130) 2-3 times a week (130) 31 to 40 11 to 20 1 to 10 21 to 30 1 to 10 25% to 49% 50% to 74% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 50% to 74% 75% to 99% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 20 to 30 20 to 30 11 to 20 11 to 20 101 to 200 41 to 50 11 to 20 51 to 100 31 to 40 50% to 74% 51 to 100 50% to 74% 31 to 40 50% to 74% 11 to 20 50% to 74% 11 to 20 75% to 99% 11 to 20 51 to 100 Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes Yes Yes No Yes No No No No No No No No Yes No Yes Yes No No Yes No No Yes No No No No Yes No Yes No No Yes No No Yes No Yes No No No No No No No Yes Yes Yes No Yes No No No No No No Yes Yes No Yes No No No Yes Yes No No Yes No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes Yes No Phone Urban England West Midlands Midlands White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No Yes No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 23 8475 598 499 582 999 5991 3125 2038 1087 1098 1098 0 3615 598 339 298 598 784 998 687 398 289 0 898 898 0 30 45 10 35 10 10 10 25 0 15 0 0 10 0 0 10 0 0 20 25 0 25 0 0 10 20 0 10 0 0 15 20 5 10 10 10 10 15 0 10 0 0 5 5 4 0 10 0 0 10 5 5 0 15 0 0 0 10 20 10 10 10 10 50 75 50 50 75 80 50 60 80 96 0 50 0 0 0 40 50 40 20 66.6666641 80 0 100 0 0 0 0 100 0 0 0 13361 5203 2684 2781 1596 1097 140 50 20 70 40 57.1428566 63.636364 35 50 30 19 84.2857132 63.3333321 20 70 1 11.4285479 11.4285479 1913 Yes Yes Yes Yes No Yes No No Yes Yes No Yes Yes Yes No Yes No No No Yes No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No Yes No No Yes Yes Yes Yes Yes No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England London South No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAWI Kids 15 0 0 0 0 0 0 2000 2000 0 0 0 0 3000 2500 500 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 1 0 0 0 0 0 0 0 0 0 0 4 1 0 0 0 0 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4500 2000 0 0 2500 0 6 0 5 5 0 0 0 0 0 5 0 0 0 0 1 0 2.70298147 2.70298147 11 Yes No Yes No No No No No Yes Yes No No No Yes No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South West South Chinese Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 0 0 0 0 0 2 2 100 100 0 0 0 2.60827494 2.60827494 12 Yes Yes Yes No No Yes No No No No Yes Yes No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 31 to 40 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 201 to 500 101 to 200 101 to 200 None None 1% to 24% None None 101 to 200 100% 100% 101 to 200 Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None None None 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 2-3 times a week (130) 51 to 100 51 to 100 51 to 100 51 to 100 100% None None None 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 31 to 40 20 to 30 Have not spent anything 201 to 500 201 to 500 201 to 500 51 to 100 25% to 49% 11 to 20 1% to 24% None None 101 to 200 100% 101 to 200 100% None 101 to 200 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) No Yes No No No No No No No No No No No No No No No No Yes No No No No Yes Yes Yes No No No No Yes No No No No No No No No No No No Yes No No No No Yes No No No Yes No Very confident (4) No No No No No No No No No No No No No No No No Yes No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 23 4500 0 0 4000 500 0 3500 3500 0 0 0 0 6000 2000 0 0 0 4000 0 500 0 0 500 2000 2000 0 350 1 0 12 60 6 0 0 0 0 0 0 200 0 0 12 60 0 200 0 0 12 60 0 0 0 0 12 60 0 20 0 0 0 0 0 0 0 0 0 0 0 0 200 0 0 0 0 0 0 0 0 0 0 0 0 0 150 1 0 0 0 6 0 13.333333 0 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 100 0 0 0 100 0 0 0 0 0 17000 9500 1000 4000 2500 0 429 0 272 272 72 26.4705887 8.73362446 0 0 200 200 100 100 0 157 2 14.0663652 14.0663652 1916 Yes No No Yes No Yes No No Yes No No No No Yes Yes No No No Yes No Yes No No No No No No No No Yes Yes No Yes Yes No No No No No No No No Once a day (365) Yes No No Yes No No No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No No No No Yes Yes Yes No No No No No Yes No No No No No No No Yes Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 1 to 10 1 to 10 Have not spent anything Most days (365) 51 to 100 None 41 to 50 51 to 100 31 to 40 11 to 20 21 to 30 Most days (365) Most days (365) 201 to 500 31 to 40 201 to 500 201 to 500 1 to 10 1% to 24% 100% 1 to 10 1% to 24% 1 to 10 1% to 24% 1% to 24% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 20 to 30 Have not spent anything Have not spent anything Have not spent anything 501 to 1000 41 to 50 201 to 500 201 to 500 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 41 to 50 51 to 100 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No Yes Yes No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Part time Any Yes No No No Yes Yes No 2 2 No Yes No Phone Urban England East Midlands Midlands Indian Minority Ethnic Yes No Yes No No Yes No Yes No No Yes Yes No No No Yes No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No No Yes No Yes No Yes Yes CAWI Adults 24 0 0 0 0 0 0 500 500 0 3578 1245 2333 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 87 490 0 0 0 8 0 33 0 0 0 0 0 455 0 0 0 8 0 488 0 0 0 0 0 4 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 7 0 0 0 8 4 4 44 0 0 0 0 0 87 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0.819672108 100 1.22950816 1.44628096 2.25409842 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4078 1745 2333 0 0 0 585 41 455 496 4 0.806451619 6.45161295 6 1.20967746 492 7 2.21774197 1.42276418 48 89 2 11.4285479 11.4285479 1918 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Strongly disagree (-4) Don't know Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes CAWI Kids 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 1 100 100 0 0 0 4.59556198 4.59556198 13 Yes No Yes No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Don't know Don't know Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 100 100 0 0 2 11.7109346 11.7109346 1922 Yes No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No Yes No No Yes No No No No No No No No Once a day (365) No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No Yes Yes No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None None Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes Yes Yes No No Yes No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England Yorkshire and The Humber North No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 4 4 0 0 0 0 0 4 0 0 0 0 0 0 3.06790113 3.06790113 14 Yes No Yes No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No Once a day (365) Yes No No No Yes Yes Yes No No No No Yes No Yes No Yes Yes No No No No No Yes No Yes No No No No No No No No No No No No Yes Yes Yes No No No No Yes No Yes No Yes Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No No No Yes No No No No No 51 to 100 11 to 20 11 to 20 Have not spent anything Have not spent anything 3 11 to 20 11 to 20 About once a week (52) About once a week (52) 21 to 30 21 to 30 21 to 30 11 to 20 50% to 74% 75% to 99% 1 to 10 25% to 49% 1 to 10 100% 100% 21 to 30 11 to 20 11 to 20 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 11 to 20 11 to 20 1 to 10 41 to 50 Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 75% to 99% 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 75% to 99% 75% to 99% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% 100% None None 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 20 to 30 1 to 10 11 to 20 11 to 20 51 to 100 11 to 20 41 to 50 51 to 100 41 to 50 50% to 74% 41 to 50 50% to 74% 11 to 20 1% to 24% 11 to 20 75% to 99% 11 to 20 75% to 99% 11 to 20 11 to 20 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Yes No Yes No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 12 6200 2000 0 0 3000 1200 0 0 0 2500 2500 0 6550 1050 500 5000 0 0 0 0 0 0 0 2000 2000 0 30 2 1 13 20 10 0 0 0 3 10 0 30 2 0 5 10 0 30 2 0 8 20 0 20 2 0 2 20 0 15 2 1 6 20 0 10 0 0 2 0 0 2 10 0 0 5 0 0 30 20 20 0 0 0 0 0 0 0 1 5 0 10 66.6666641 75 33.3333321 100 100 100 100 0 0 100 0 100 0 0 0 25 85.7142868 25 25 83.3333359 87.5 100 100 0 0 100 0 0 0 0 0 15950 9500 3000 400 1050 2000 76 13 47 60 44 73.3333359 73.3333359 12 20 16 15 98.3333359 93.75 20 16 0 3.06790113 3.06790113 15 Yes No No No No Yes No No Yes No No No No Yes Yes Yes No Yes No No No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes Yes No Yes Yes Yes Yes Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 100+ None None None Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Strongly disagree (-4) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England South East South White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 21 14000 14000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 0 0 0 0 14000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 15.476119 15.476119 1924 No No Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Once a day (365) No No No No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No 3 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 75% to 99% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 41 to 50 20 to 30 1 to 10 1 to 10 1 to 10 1 to 10 31 to 40 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 21 to 30 75% to 99% 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% 1 to 10 21 to 30 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No Yes No No Yes No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England West Midlands Midlands White British White No Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 2820 404 404 404 404 1212 505 505 0 202 202 0 1616 404 404 404 0 0 404 303 101 101 101 404 404 0 6 5 4 4 8 4 0 0 0 0 4 0 2 0 0 0 0 0 2 0 0 0 4 0 2 0 0 0 1 0 4 5 4 4 4 4 2 0 0 0 1 0 0 0 0 0 0 3 0 4 4 4 0 0 0 0 0 4 5 4 4 4 4 100 66.6666641 100 0 100 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 25 80 25 100 100 0 100 0 0 0 4646 2020 505 404 909 808 31 4 2 6 3 50 89.2857132 3 50 3 3 100 100 4 25 2 11.4285479 11.4285479 1927 Yes Yes Yes No No Yes No No Yes Yes No No No Yes No No No No No No Yes Yes No No No No No No No No Yes No Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 50% to 74% 1 to 10 50% to 74% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 4 4 Yes Yes No Phone Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 4000 2500 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66.6666641 66.6666641 0 0 0 0 0 4000 1500 0 0 2500 0 7 0 3 3 0 0 0 0 0 3 2 66.6666641 66.6666641 0 4 4 14.0663652 14.0663652 1935 No No No No No Yes No Yes Yes No No Yes No No No No No No No No Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Every 2-3 weeks (30) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 1 to 10 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 None Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban England North East North White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 700 700 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 700 0 0 0 700 0 6 3 3 6 0 0 0 0 0 6 0 0 0 3 0 2 11.7109346 11.7109346 1969 Yes No Yes No No Yes No No Yes No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No Yes Yes No No No No Yes Yes Yes No Yes Yes No No No No No Yes Yes Yes No Yes Yes No No No No No Yes Yes No No No Yes Yes No No No No No No Yes No No Yes No No No No Yes No No Yes No No No No Yes No No Yes No No 100+ 11 to 20 Have not spent anything 11 to 20 31 to 40 11 to 20 51 to 100 51 to 100 2-3 times a week (130) Most days (365) 2-3 times a week (130) 101 to 200 41 to 50 51 to 100 101 to 200 21 to 30 1% to 24% 25% to 49% 51 to 100 75% to 99% 51 to 100 75% to 99% 75% to 99% 1001+ 51 to 100 51 to 100 51 to 100 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 51 to 100 51 to 100 20 to 30 About once a week (52) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% 1 to 10 100% 100% 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 50% to 74% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None 11 to 20 100% 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 41 to 50 20 to 30 Have not spent anything 11 to 20 201 to 500 51 to 100 51 to 100 101 to 200 41 to 50 25% to 49% 51 to 100 25% to 49% 101 to 200 50% to 74% 51 to 100 75% to 99% 51 to 100 75% to 99% 51 to 100 51 to 100 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Yes Yes Yes No No No No Yes No No No No No No No Yes No No Yes Yes No No No No Yes Yes No No Yes Yes Yes Yes No Yes Yes Yes No No No No Yes No No No No No Yes No Yes No Yes Yes No No No No Yes Yes Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England North West North White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 15 13693 0 1099 3499 1595 7500 9000 6500 2500 6000 6000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 185 10 3 12 16 0 45 2 0 8 6 0 80 5 0 4 10 0 125 7 0 12 16 0 25 7 0 0 16 0 40 10 2 0 0 0 100 7 0 0 0 0 0 80 0 0 12 0 0 5000 90 90 0 0 0 2 0 60 3 3 0 0 0 20 47.0588226 80 80 84 100 100 100 0 100 0 66.6666641 0 0 0 0 0 0 0 100 100 100 0 0 0 100 0 0 0 0 0 23693 15999 4095 2500 0 1099 226 61 99 160 48 30 45.6140366 107 66.875 112 92 87.5 82.1428604 92 66 0 2.9604094 2.9604094 16 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything None None None Slightly agree (2) Don't know Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) No No Yes Yes No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No Yes No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Urban England London South Caribbean Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 1045 1045 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1045 0 0 0 1045 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 15.476119 15.476119 1973 Yes Yes Yes Yes No Yes Yes No Yes Yes Yes Yes No Yes Yes Yes No No No No No No Yes No No No Yes No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes Yes No Yes Yes Yes No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No Yes No No No Yes Yes No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) Most days (365) 201 to 500 41 to 50 101 to 200 201 to 500 21 to 30 1% to 24% 100% 51 to 100 25% to 49% 101 to 200 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 1 to 10 25% to 49% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Most days (365) 101 to 200 1 to 10 101 to 200 101 to 200 101 to 200 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything 1 to 10 Have not spent anything 51 to 100 Have not spent anything 201 to 500 51 to 100 201 to 500 201 to 500 201 to 500 50% to 74% 21 to 30 1% to 24% 51 to 100 25% to 49% 101 to 200 100% 101 to 200 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No Yes Yes No Yes No No No No No Yes Yes Yes No No Yes No Yes No No No No No No No Yes Yes No Yes No Yes No Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 20 189 0 0 0 189 0 0 0 0 0 0 0 6000 6000 0 0 0 0 0 0 0 0 0 0 0 0 210 0 0 10 182 0 50 0 0 0 2 0 160 0 0 10 180 0 210 0 0 10 182 0 30 0 0 10 182 0 30 0 0 0 0 0 100 0 0 0 0 0 4 180 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14.2857141 100 47.6190491 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 40 0 100 100 0 0 0 100 0 0 0 0 0 6189 0 189 0 6000 0 402 52 350 402 222 55.2238808 13.5135136 100 24.8756218 180 180 100 100 0 0 4 11.4285479 11.4285479 1974 Yes No Yes Yes No Yes Yes No Yes No No No No Yes No No No No No No Yes No No No No No No No No Yes No No No No Yes No No No No No No No Several times a day (730) Yes No No No No Yes No Yes No No No Yes Yes No No Yes Yes Yes Yes No No No Yes No No No No No No No No No No Yes No No No No Yes No Yes No No No Yes Yes No No Yes Yes Yes Yes No No No Yes No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything About once a month (12) Most days (365) About once a week (52) 101 to 200 11 to 20 101 to 200 101 to 200 None None None None 101 to 200 100% 100% 1001+ 41 to 50 41 to 50 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 31 to 40 31 to 40 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 1 to 10 11 to 20 Have not spent anything Less often (6) 2-3 times a week (130) 51 to 100 1 to 10 51 to 100 51 to 100 None None None None None 51 to 100 100% 100% 11 to 20 51 to 100 51 to 100 1 to 10 About once a week (52) Less often (6) 31 to 40 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% None 1 to 10 1% to 24% 1 to 10 100% 100% 11 to 20 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 11 to 20 Have not spent anything 31 to 40 51 to 100 201 to 500 21 to 30 201 to 500 201 to 500 1 to 10 1% to 24% None None 1 to 10 1% to 24% 201 to 500 100% 201 to 500 100% 41 to 50 31 to 40 Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No Yes No No No No No No No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No Very confident (4) No No No No No No No No No No No No No No Yes No No No Yes No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England South East South White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 20 7500 6000 0 0 1500 0 0 0 0 0 0 0 4500 3500 0 1000 0 0 0 2000 500 1500 0 6100 5800 300 170 0 0 5 85 35 15 0 0 0 3 8 155 0 0 3 67 7 170 0 0 3 70 15 0 0 0 3 0 6 0 0 0 0 0 0 0 0 0 0 0 2 0 170 0 0 0 70 9 2545 50 50 0 0 0 0 0 0 0 0 2 15 20 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 40 0 13.333333 100 100 19600 8300 1800 0 3500 6000 295 26 232 258 9 3.48837209 0 2 0.77519381 249 249 100 100 50 37 3 15.476119 15.476119 1977 Yes Yes No No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No Yes No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 15.476119 15.476119 1980 Yes No Yes No No Yes Yes No Yes Yes Yes Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No Yes No No No No No Yes Yes Yes Yes Yes No No Yes No No No Yes Yes Yes Yes Yes Yes No Yes No No No No Yes Yes No No Yes No No No No No Yes No Yes No No No No No Yes No Yes No No Yes No No Yes No Yes No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 31 to 40 11 to 20 11 to 20 About once a month (12) About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 1 to 10 31 to 40 21 to 30 11 to 20 About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 51 to 100 41 to 50 21 to 30 11 to 20 21 to 30 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None 1 to 10 25% to 49% None None 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 20 to 30 11 to 20 1 to 10 11 to 20 About once a week (52) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 1 to 10 11 to 20 Have not spent anything 11 to 20 Less often (6) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 100+ 51 to 100 51 to 100 Have not spent anything 41 to 50 Have not spent anything 21 to 30 1 to 10 11 to 20 21 to 30 11 to 20 75% to 99% None None 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% 1 to 10 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Yes Yes Yes No No Yes No No No No No No No Yes No No Yes No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 2200 0 0 1200 1000 0 3600 1800 1800 3900 2400 1500 7000 3000 1400 2200 400 0 0 2800 1100 500 1200 2000 0 2000 6 6 5 5 5 2 2 2 2 2 0 1 2 2 2 2 4 1 4 4 4 4 4 2 3 3 4 3 3 2 0 0 0 0 0 0 1 1 0 1 1 0 0 1 1 0 1 1 0 0 0 0 1 0 0 1 0 2 2 1 1 1 0 75 0 25 100 100 75 0 25 100 100 100 0 0 0 100 75 0 25 0 100 100 75 0 25 100 100 100 0 0 0 100 20200 8100 7900 0 4200 0 29 9 13 22 18 81.8181839 0 4 18.181818 4 4 100 100 2 7 0 3.18014598 3.18014598 19 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No No No No No Yes No Yes No No No No Yes Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 25% to 49% None None None None None None None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 Yes Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 24 0 0 0 0 0 0 99 99 0 99 99 0 0 0 0 0 0 0 0 198 99 99 0 99 99 0 2 1 1 0 2 1 1 0 0 0 0 0 1 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 1 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 396 396 0 0 0 0 7 1 1 2 0 0 40 0 0 2 0 0 0 0 5 4 14.0663652 14.0663652 1981 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 51 to 100 51 to 100 51 to 100 None None None None None None 51 to 100 100% 51 to 100 100% None None Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Don't know Slightly agree (2) Neither agree nor disagree (0) Don't know Yes Yes Yes Yes No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone England Yorkshire and The Humber North White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 2000 2000 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 5 0 0 0 0 0 0 0 50 0 0 0 5 0 50 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3500 0 0 0 1500 2000 55 0 55 55 0 0 0 0 0 55 55 100 100 0 0 2 14.9710493 14.9710493 2015 Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Don't know Don't know Strongly disagree (-4) Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No No Yes Yes Yes No 4 4 Yes No No Phone England London South White British White No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 24 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 12.5739346 12.5739346 2019 Yes No Yes Yes Yes Yes Yes No Yes Yes Yes Yes No Yes No No No Yes No No No No Yes No No Yes No Yes No Yes Yes No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes No Yes Yes Yes Yes No No No Yes Yes No Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes No Yes Yes Yes Yes No No No Yes Yes No Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes No Yes Yes No Yes Yes Yes No No Yes Yes Yes Yes Yes Yes No No 100+ 51 to 100 31 to 40 3 11 to 20 1 to 10 51 to 100 51 to 100 Most days (365) Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) 20 to 30 11 to 20 11 to 20 Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 50% to 74% 25% to 49% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 41 to 50 21 to 30 11 to 20 Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 25% to 49% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 1 to 10 100+ 51 to 100 11 to 20 21 to 30 31 to 40 41 to 50 11 to 20 11 to 20 Most days (365) Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) 100+ 51 to 100 51 to 100 31 to 40 Most days (365) Most days (365) Most days (365) 101 to 200 11 to 20 51 to 100 101 to 200 51 to 100 50% to 74% 50% to 74% 31 to 40 25% to 49% 21 to 30 75% to 99% 75% to 99% 31 to 40 21 to 30 51 to 100 21 to 30 31 to 40 Most days (365) Most days (365) Most days (365) 41 to 50 11 to 20 11 to 20 31 to 40 11 to 20 50% to 74% 50% to 74% 11 to 20 50% to 74% 11 to 20 75% to 99% 75% to 99% 11 to 20 11 to 20 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) 100+ 100+ 100+ 31 to 40 51 to 100 51 to 100 201 to 500 51 to 100 101 to 200 101 to 200 101 to 200 50% to 74% 51 to 100 50% to 74% 51 to 100 25% to 49% 51 to 100 75% to 99% 51 to 100 75% to 99% 51 to 100 51 to 100 Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Yes No No No No No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No No Yes No No Yes No Yes No No Yes Yes No No No No No No No No Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban Scotland Scotland North White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes No Yes No Yes No Yes Yes Yes No No No Yes No Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 15 16000 4000 3000 2000 1000 6000 2400 1200 1200 5000 3000 2000 18000 2000 3000 4000 5000 2000 2000 21000 7000 10000 4000 7000 3000 4000 15 16 8 9 150 44 5 8 0 3 20 20 5 0 4 3 100 12 10 8 4 6 120 32 5 4 3 3 80 16 5 4 3 3 60 20 5 4 1 3 40 16 3 5 4 1 3 30 12 5 5 5 8 4 3 40 12 5 8 4 3 30 12 50 50 50 100 100 50 33.3333321 50 100 100 75 42.8571434 25 100 100 50 50 50 50 100 100 66.6666641 54.5454559 33.3333321 75 91.6666641 50 71.4285736 50 75 87.5 59400 23200 17200 4000 8000 7000 242 56 124 180 111 61.6666679 54.9132957 69 38.3333321 69 55 92.2222214 79.710144 72 62 0 4.59556198 4.59556198 17 Yes No No No No Yes No No Yes No No No No Yes No No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No Once a day (365) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 11 to 20 11 to 20 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) 51 to 100 21 to 30 41 to 50 51 to 100 None None None None 51 to 100 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 51 to 100 21 to 30 41 to 50 51 to 100 None None None None None None 51 to 100 100% 51 to 100 100% None None Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Yes Yes Yes Yes No No No Yes No No No No No No No No No No No Yes Yes No No No No Yes No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South East South Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 13 1800 1500 300 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 75 0 0 0 0 0 25 0 0 0 0 0 50 0 0 0 0 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2300 0 0 0 500 1800 75 25 50 75 0 0 0 0 0 75 75 100 100 0 0 0 2.70298147 2.70298147 18 Yes No Yes No No No Yes No No Yes No Yes No Yes No Yes No No No No No No Yes No No No No No No No No Yes Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No Yes Yes No Yes No No No No No Yes No Yes Yes Yes Yes Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 11 to 20 Less often (6) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 11 to 20 Have not spent anything 20 to 30 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None None 1 to 10 25% to 49% 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England London South White British White Yes Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 0 0 0 0 0 0 12000 10000 2000 0 0 0 2500 2500 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 2 0 0 0 0 0 6 0 0 0 0 0 8 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 75 0 25 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 10000 2000 0 2500 0 12 2 6 8 6 75 0 2 25 2 2 100 100 0 4 0 2.60827494 2.60827494 20 Yes Yes Yes No No Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes No Yes Yes No Yes No No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No Yes No No Yes No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 21 to 30 21 to 30 21 to 30 75% to 99% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None None Slightly disagree (-2) Don't know Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 2 0 10 0 0 1 1 0 0 0 10 0 1 0 10 0 10 1 2 0 10 0 10 0 2 0 10 0 10 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 100 0 0 100 100 100 100 0 0 0 100 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 23 2 21 23 22 95.6521759 45.4545441 1 4.347826 1 1 100 100 0 0 2 11.4285479 11.4285479 2039 No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Less often (6) 11 to 20 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 1 to 10 Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 21 to 30 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 11 to 20 100% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 23 2000 0 0 2000 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 10 0 10 0 0 0 0 0 0 0 0 0 10 0 10 0 0 0 10 0 10 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3000 2000 0 0 1000 0 30 10 10 20 10 50 100 0 0 10 10 100 100 0 10 3 11.7109346 11.7109346 2042 Yes Yes Yes No No Yes Yes No Yes Yes No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 1% to 24% 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 31 to 40 75% to 99% 75% to 99% Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything Have not spent anything Have not spent anything 31 to 40 100+ 51 to 100 51 to 100 51 to 100 None None None None None None 51 to 100 75% to 99% 51 to 100 75% to 99% None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No Yes No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No Yes No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes Yes No 5+ 5+ Yes No No Phone Rural England South East South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 20 16000 16000 0 0 0 0 0 0 0 0 0 0 4000 3000 0 0 0 0 1000 0 0 0 0 0 0 0 30 0 0 10 50 0 0 0 0 0 0 0 30 0 0 10 50 0 30 0 0 10 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 30 0 0 10 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 20 100 100 0 0 0 80 80 0 0 0 0 0 20000 0 0 0 4000 16000 90 0 90 90 0 0 0 0 0 90 80 88.8888855 88.8888855 0 0 5 16.0742931 16.0742931 2056 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 Yes No No Phone Urban England East Midlands Midlands White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 14.6100512 14.6100512 2059 Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No Yes No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes No Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No No No No Yes No No No No Yes Yes No Yes Yes No No No No No No Yes Yes No No Yes Yes No No No No No Yes No No No No No Yes No No No No Yes Yes No Yes No No No No Yes No No No No No No No Yes Yes Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% None None None 51 to 100 1 to 10 1 to 10 Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Yes Yes Yes No No No No Yes No No No No No Yes Yes Yes Yes Yes No No No No No No No Yes No No No No No Yes No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No Yes No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 4 4 Yes No No Phone Urban England North West North Pakistani Minority Ethnic Yes Yes Yes No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 6 2 0 1 0 1 5 0 0 1 0 0 1 2 0 2 0 1 6 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 100 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 50 0 0 0 0 0 2000 0 0 0 2000 0 11 7 4 11 0 0 0 1 9.090909 11 1 9.090909 9.090909 1 0 4 14.9710493 14.9710493 2063 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes No No No No Yes No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes Yes No No No No Yes No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No Yes No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% 100% None None 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% 11 to 20 100% None None None 100% None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) No No No Yes No No Yes Yes No No No No No Yes No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England East of England Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 10 10 20 20 100 100 0 0 0 0 100 0 0 0 0 3.18014598 3.18014598 21 Yes No No No No Yes No No No No No No No No No No No No No Yes Yes No Yes No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England London South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 1600 1200 400 0 0 0 0 2000 1000 1000 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2200 1000 0 0 1200 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2.60827494 2.60827494 22 Yes No Yes No No Yes Yes No Yes Yes No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No Yes No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 51 to 100 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 51 to 100 Have not spent anything 41 to 50 31 to 40 31 to 40 None None None None None None 31 to 40 100% 31 to 40 100% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) No Yes No Yes No No No No Yes No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No No No Yes No Yes 4 4 No Yes No Phone Urban Scotland Scotland North White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 13000 10000 0 3000 0 0 0 0 0 0 0 5000 5000 0 30 0 0 4 10 3 0 0 0 0 0 0 30 0 0 0 10 0 30 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 4 0 3 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 18000 8000 0 0 10000 0 47 0 40 40 0 0 0 0 0 40 40 100 100 0 7 4 14.8424444 14.8424444 2083 Yes No Yes Yes Yes Yes No No No No No Yes Yes Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No Yes No No Yes No Yes No Yes Yes Yes No Yes No No No No No No No 51 to 100 31 to 40 3 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 About once a month (12) About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 1001+ 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 1 to 10 1 to 10 11 to 20 31 to 40 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 75% to 99% None None None 100% 1 to 10 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Yes Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No Yes No No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Rural England West Midlands Midlands White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes CAWI Adults 23 6079 3000 500 1000 79 1500 0 0 0 0 0 0 3000 2000 0 1000 0 0 0 1000 0 1000 0 1000 1000 0 10 0 0 2 0 1 6 0 0 0 0 0 1 0 0 0 0 0 7 0 0 0 0 0 7 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1008 1 1 0 0 0 0 0 3 0 0 2 0 1 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10079 4000 79 500 2000 3500 13 6 1 7 7 100 76.9230804 0 0 0 0 100 0 1 6 2 9.84904194 9.84904194 2081 Yes No Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) No No Yes No No Yes Yes No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 1 to 10 Have not spent anything Have not spent anything 11 to 20 51 to 100 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Don't know Yes Yes Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North White Irish White No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 15 5500 5500 0 0 0 0 1000 1000 0 0 0 0 1900 1500 0 0 0 0 400 0 0 0 0 0 0 0 0 3 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 50 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8400 1000 0 0 1900 5500 3 2 0 2 0 0 0 1 50 2 2 100 100 0 1 0 2.9604094 2.9604094 23 Yes Yes No No No Yes No No Yes No No No No Yes Yes No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No No No No Yes Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 5 0 0 0 0 0 0 0 0 0 0 3 5 0 0 0 0 3 5 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66.6666641 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 4000 4000 0 0 0 0 9 0 8 8 2 25 0 0 0 6 6 100 100 0 1 3 14.9710493 14.9710493 2089 Yes No Yes No No Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No 51 to 100 Have not spent anything Have not spent anything Have not spent anything 31 to 40 1 to 10 3 3 2-3 times a week (130) 101 to 200 41 to 50 41 to 50 11 to 20 25% to 49% 75% to 99% 31 to 40 50% to 74% 31 to 40 100% 100% 51 to 100 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 1 to 10 1 to 10 Have not spent anything Have not spent anything 101 to 200 51 to 100 51 to 100 11 to 20 25% to 49% 51 to 100 75% to 99% 31 to 40 50% to 74% 41 to 50 100% 41 to 50 100% None 51 to 100 Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No No No No Yes No Yes No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 7500 0 0 4000 500 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110 0 0 0 6 0 0 0 0 0 0 0 50 0 0 0 6 0 50 0 0 0 6 0 15 0 0 0 0 0 60 0 0 0 0 0 35 0 0 0 0 0 0 35 0 0 0 6 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 30 80 70 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5500 4000 500 1000 0 0 116 0 56 56 15 26.7857151 80 35 62.5 41 41 100 100 0 60 0 3.06790113 3.06790113 24 Yes No Yes No No Yes No No No No No No No Yes No No No No No No Yes No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes No No Yes Yes Yes No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 3 3 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 100% None None None None 1 to 10 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 11 to 20 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 None None 1 to 10 100% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time Any Yes No No No Yes Yes No 4 4 No Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 21 3000 0 0 0 0 3000 2000 2000 0 0 0 0 2000 0 0 2000 0 0 0 2000 0 2000 0 0 0 0 5 1 0 3 2 0 5 0 0 1 2 0 0 0 0 0 0 0 5 0 0 1 2 0 0 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 5 0 0 1 2 0 0 0 0 0 0 0 0 0 0 1 0 2 0 0 0 0 0 100 100 0 100 0 0 0 0 0 0 0 0 0 100 0 0 100 100 0 0 0 100 100 0 0 0 0 0 7000 6000 0 1000 0 0 11 8 0 8 0 0 100 0 0 8 8 100 100 0 3 4 10.8361282 10.8361282 2131 Yes No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No Yes No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 0 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.06790113 3.06790113 25 Yes No No No No Yes No No Yes No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England South West South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 16.0742931 16.0742931 2160 Yes No Yes No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Yes Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 201 to 500 101 to 200 51 to 100 201 to 500 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything About once a month (12) 2-3 times a week (130) 51 to 100 11 to 20 21 to 30 41 to 50 None None 100% None None None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 None None None None None None None 21 to 30 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 51 to 100 21 to 30 51 to 100 51 to 100 51 to 100 50% to 74% 50% to 74% None None None None None None 50% to 74% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) Most days (365) 51 to 100 21 to 30 31 to 40 51 to 100 11 to 20 25% to 49% 100% None None None None 25% to 49% Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 41 to 50 31 to 40 1 to 10 41 to 50 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 11 to 20 Have not spent anything 11 to 20 11 to 20 Have not spent anything 501 to 1000 201 to 500 201 to 500 501 to 1000 51 to 100 1% to 24% 51 to 100 75% to 99% None None None None None 1% to 24% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Slightly agree (2) Yes No No Yes No No No Yes No No No No No Yes Yes No No No No No No Yes No No No No No No Yes No Yes Yes Yes No Yes Yes No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban Wales Wales Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 22 0 0 0 0 0 0 2000 2000 0 0 0 0 3000 1500 0 0 0 1500 0 0 0 0 0 0 0 0 300 52 20 90 70 50 200 20 20 30 30 40 100 30 0 60 40 10 300 50 20 90 70 50 0 0 0 60 20 0 0 2 0 40 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 66.6666641 66.6666641 0 0 0 66.6666641 28.5714283 100 0 0 28.5714283 0 0 0 0 0 5000 2000 0 1500 1500 0 582 340 240 580 80 13.7931032 75.6097565 0 0 500 0 13.7931032 0 0 2 2 11.4285479 11.4285479 2163 Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No Yes No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No Yes 4 4 No Yes No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 9.84904194 9.84904194 2168 Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Don't know Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Don't know No No No No No No Yes No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Rural Scotland Scotland North White British White No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Kids 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.43454361 4.43454361 26 Yes No No No No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 13 999 0 999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 299 299 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1298 299 0 0 0 999 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3.18014598 3.18014598 27 Yes No No No No Yes No No Yes No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) No No No No No No Yes No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 14 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 3 0 0 0 0 0 0 0 1 0 0 0 3 0 1 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2000 0 0 0 2000 0 4 0 4 4 0 0 0 0 0 4 4 100 100 0 0 0 3.18014598 3.18014598 28 Yes No No No No Yes No No Yes Yes No No No Yes Yes No No No No No Yes No No No No No No Yes No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No Yes No No 3 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 100% 100% 1 to 10 Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 None None 25% to 49% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 50% to 74% 50% to 74% 1 to 10 Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything 1 to 10 11 to 20 1 to 10 31 to 40 1 to 10 11 to 20 21 to 30 None None 1 to 10 25% to 49% 1 to 10 1% to 24% 11 to 20 75% to 99% 11 to 20 75% to 99% None 11 to 20 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) No Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes Yes No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes Yes No Phone Urban England Yorkshire and The Humber North White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 21 3000 1000 0 500 0 1500 0 0 0 0 0 0 2100 1500 0 600 0 0 0 0 0 0 0 1500 1500 0 6 0 0 16 6 4 5 0 0 0 0 0 0 0 0 10 6 0 5 0 0 10 6 0 0 0 0 0 0 0 1 0 0 2 0 0 0 0 0 4 0 0 2 5 0 0 5 6 0 0 0 0 0 0 0 0 0 1 0 0 6 0 4 0 100 0 100 100 0 0 0 0 0 0 0 0 0 0 0 33.3333321 40 20 50 50 0 0 0 100 100 0 0 0 0 0 5600 2600 0 500 1500 1000 32 5 16 21 0 0 27.272728 4 19.0476189 21 16 76.1904755 76.1904755 0 11 5 10.0924006 10.0924006 2170 Yes Yes Yes No No Yes No Yes No No Yes No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No Yes No Several times a day (730) No No No No No No No No No Yes No Yes Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 100+ 11 to 20 Have not spent anything Have not spent anything 20 to 30 51 to 100 101 to 200 101 to 200 101 to 200 None None None None None None 51 to 100 50% to 74% 51 to 100 50% to 74% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South West South White British White No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 22 10000 10000 0 0 0 0 2000 2000 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 90 10 0 0 90 0 0 0 0 0 0 0 90 9 0 0 90 0 90 9 0 0 90 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90 9 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 2000 0 0 3000 10000 190 0 189 189 0 0 0 0 0 189 99 52.3809509 52.3809509 0 1 2 16.0742931 16.0742931 2187 No No Yes No No No No No Yes No No No No No Yes No No Yes No No No No No No No No No Yes No Yes No Yes No No No No No No No No No No Once a day (365) Yes No No No Yes Yes No No No No No Yes No Yes No No Yes No No No No No Yes No No No Yes Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No Yes No No No Yes No No No No Yes No No No Yes No No Yes No No No Yes No No No 51 to 100 3 11 to 20 11 to 20 3 11 to 20 11 to 20 11 to 20 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 25% to 49% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) 20 to 30 20 to 30 Have not spent anything 11 to 20 100% 11 to 20 11 to 20 11 to 20 Have not spent anything 11 to 20 100% 11 to 20 51 to 100 51 to 100 11 to 20 21 to 30 11 to 20 Have not spent anything Have not spent anything 11 to 20 2-3 times a week (130) 1 to 10 100% 1 to 10 1 to 10 51 to 100 20 to 30 11 to 20 11 to 20 Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 31 to 40 1 to 10 41 to 50 20 to 30 41 to 50 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 41 to 50 75% to 99% 1 to 10 75% to 99% 1 to 10 100% 1 to 10 100% 1 to 10 41 to 50 Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Yes No No Yes No No No No No No No No No Yes No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No Yes No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time Any Yes No No No Yes No Yes 2 2 Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 7562 1515 1010 2020 1515 1506 2015 2015 0 1515 1515 0 6555 1515 2015 1515 0 0 1510 5045 2015 1515 1515 505 505 0 6 15 15 2 4 5 0 0 0 0 2 0 3 0 0 0 0 0 3 0 0 0 2 0 2 0 0 0 2 0 2 15 15 2 2 5 2 0 0 0 2 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 0 3 15 15 2 2 5 66.6666641 40 66.6666641 100 100 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 100 50 100 0 100 0 100 0 0 0 19682 9085 3030 502 4540 2525 47 2 3 5 4 80 89.1304321 4 80 1 1 100 100 2 42 2 14.6100512 14.6100512 2227 Yes No Yes No No Yes No No Yes No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything None None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No Yes No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England East Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Kids 15 0 0 0 0 0 0 0 0 0 0 0 0 399 0 0 0 0 0 399 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 399 0 0 0 399 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.18014598 3.18014598 29 Yes Yes No No No Yes No No Yes Yes No No No Yes No Yes No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 41 to 50 41 to 50 Less often (6) Most days (365) 201 to 500 1 to 10 201 to 500 201 to 500 201 to 500 75% to 99% 75% to 99% 1 to 10 None 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 21 to 30 100% 1% to 24% None None None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) 1 to 10 Have not spent anything Have not spent anything 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 11 to 20 11 to 20 11 to 20 Have not spent anything 201 to 500 1 to 10 201 to 500 201 to 500 201 to 500 75% to 99% 201 to 500 50% to 74% 1 to 10 None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No No Yes No Yes No No No No No Yes Yes Yes No No Yes No No No No No No No No No Yes Yes No Yes Yes Yes No Yes No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban Scotland Scotland North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 21 6000 0 0 0 1500 4500 0 0 0 0 0 0 1200 700 0 0 0 500 0 500 0 0 500 2500 2500 0 251 2 0 25 4 2 1 2 0 0 0 0 250 0 0 25 4 0 251 2 0 25 4 0 250 0 0 25 0 0 200 0 0 5 0 0 1 0 0 0 0 0 0 1 2 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 99.601593 80 0.398406386 100 100 0 0 0 100 100 0 0 0 0 0 100 20 0 0 0 100 0 0 0 100 100 0 0 0 0 0 7700 2500 2000 2000 1200 0 284 3 279 282 275 97.5177307 74.0072174 1 0.354609936 7 7 100 100 0 2 2 10.0057049 10.0057049 2229 Yes Yes No Yes No Yes Yes No No No No No No Yes Yes No No No No No Yes No No No No No No Yes No Yes No No Yes No No No No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes Yes No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 11 to 20 About once a week (52) About once a week (52) 21 to 30 11 to 20 11 to 20 21 to 30 11 to 20 50% to 74% 100% 11 to 20 50% to 74% 11 to 20 100% 100% Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 1 to 10 1 to 10 1 to 10 11 to 20 Have not spent anything 31 to 40 11 to 20 11 to 20 31 to 40 11 to 20 25% to 49% 11 to 20 75% to 99% 11 to 20 25% to 49% 11 to 20 100% 11 to 20 100% None 1 to 10 Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) No No Yes No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 Yes Yes No Phone Urban England North East North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 2500 0 0 0 1000 1500 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 1000 1000 0 30 0 0 0 3 3 15 0 0 0 0 0 15 0 0 0 3 0 30 0 0 0 3 0 15 0 0 0 0 0 15 0 0 0 0 0 15 0 0 0 0 0 0 15 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 50 100 50 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4000 1000 1000 500 1500 0 36 15 18 33 15 45.4545441 83.3333359 15 45.4545441 18 18 100 100 0 3 4 14.413929 14.413929 2238 Yes No No No No Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No Yes Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No 41 to 50 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 3 3 About once a month (12) About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 1% to 24% None None 100% 31 to 40 1 to 10 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything 1 to 10 1 to 10 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 1 to 10 1% to 24% None None 1 to 10 100% 1 to 10 100% 1 to 10 None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Rural England North East North White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Kids 14 4800 2000 0 0 700 2100 0 0 0 0 0 0 1200 1200 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 4 0 3 0 0 0 0 0 3 0 0 0 4 0 6 0 0 0 4 0 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 40 2 2 0 0 0 0 0 0 0 0 0 0 0 100 16.666666 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4600 0 700 700 1200 2000 10 3 7 10 6 60 16.666666 0 0 4 4 100 100 2 0 0 3.06790113 3.06790113 30 Yes No No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No Yes No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 51 to 100 51 to 100 1 to 10 1% to 24% None None None None 51 to 100 100% 51 to 100 100% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Rural Scotland Scotland North White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 2000 0 0 0 0 0 0 0 0 1000 1000 0 2 0 0 10 50 3 0 0 0 0 0 0 2 0 0 10 50 0 2 0 0 10 50 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 1000 1000 0 0 0 0 65 0 62 62 10 16.1290321 0 0 0 52 52 100 100 0 3 4 14.2901106 14.2901106 2240 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No Yes No No Yes No 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 3 3 About once a week (52) 51 to 100 51 to 100 51 to 100 41 to 50 75% to 99% None None None 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything 51 to 100 51 to 100 51 to 100 51 to 100 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes No No No No No Yes No No No No No Yes No No No Yes No No Yes No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 5+ 5+ Yes No No Phone Urban England London South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 4000 0 0 0 1000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 60 0 0 0 0 3 60 0 0 0 0 3 0 0 0 0 0 0 60 0 0 0 0 3 50 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83.3333359 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 3000 0 2000 1000 0 0 63 63 0 63 53 84.1269836 0 0 0 10 10 100 100 0 0 5 10.8361282 10.8361282 2260 Yes No No Yes No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No 5-6 days a week (286) No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None None None 100% Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 50% to 74% None None None 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes CAWI Kids 14 0 0 0 0 0 0 3500 3500 0 0 0 0 0 0 0 0 0 0 0 1500 500 1000 0 0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 0 100 0 0 0 0 0 0 0 0 4500 4500 0 0 0 0 3 1 0 1 1 100 66.6666641 0 0 0 0 100 0 0 2 0 2.9604094 2.9604094 31 Yes Yes No No No Yes Yes No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 100+ 51 to 100 51 to 100 Have not spent anything 3 1 to 10 3 3 Every 2-3 weeks (30) Most days (365) 1001+ 51 to 100 1001+ 1001+ 1001+ 100% None 501 to 1000 25% to 49% 100% 31 to 40 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Likely (3) Very Unlikely (1) 51 to 100 31 to 40 31 to 40 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 11 to 20 21 to 30 1 to 10 Have not spent anything 1 to 10 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 41 to 50 11 to 20 11 to 20 51 to 100 1001+ 101 to 200 1001+ 1001+ 1001+ 75% to 99% None None 501 to 1000 25% to 49% 11 to 20 100% 11 to 20 100% None 51 to 100 Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Yes Yes No No No No Yes Yes No No No No No No Yes No Yes No No No No Yes No Yes No No No No Yes Yes No Yes Yes No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No Yes No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 No Yes No Phone Urban England South West South White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 23 17000 10000 0 3000 1000 3000 8000 4000 4000 0 0 0 6500 1500 3000 1000 0 1000 0 0 0 0 0 2000 2000 0 3140 4 0 9 11 5 100 1 0 0 1 0 3000 0 0 6 10 0 3100 1 0 6 11 0 3100 1 0 6 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 11 0 0 0 0 0 0 0 0 0 40 3 0 3 0 5 100 0 32.2580643 0 100 100 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 28500 10000 5000 2000 1500 10000 3169 102 3016 3118 3107 99.6472092 0 1000 32.0718422 11 11 100 100 0 51 4 15.476119 15.476119 2281 Yes No No No No Yes No No Yes No No No No Yes No No No Yes No No Yes No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 51 to 100 1 to 10 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 1 to 10 Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time Any Yes No Yes No No Yes No 2 2 Yes Yes No Phone Urban England West Midlands Midlands Caribbean Minority Ethnic Yes No Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 1500 0 1000 1000 0 4 0 0 0 0 2 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 70 10 10 0 0 0 0 0 0 0 0 0 0 2 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 6 4 0 4 4 100 0 0 0 0 0 100 0 10 2 2 9.84904194 9.84904194 2296 Yes No Yes No No Yes No No Yes Yes Yes Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 20 to 30 11 to 20 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 11 to 20 11 to 20 Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 1 to 10 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 Have not spent anything 41 to 50 Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 11 to 20 Have not spent anything 11 to 20 Have not spent anything 51 to 100 51 to 100 51 to 100 1 to 10 1% to 24% None None 1 to 10 1% to 24% 51 to 100 100% 51 to 100 100% None 11 to 20 Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No Yes Yes Yes Yes No No No Yes No No No Yes Yes No No No No No Slightly confident (3) No Yes No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England West Midlands Midlands White British White No Yes No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 20 0 0 0 0 0 0 5000 3000 2000 0 0 0 7000 2000 0 5000 0 0 0 5000 0 5000 0 2000 2000 0 50 6 10 9 6 4 0 0 0 0 0 0 50 3 10 3 6 0 50 3 10 3 6 0 0 3 0 3 0 0 0 0 0 0 0 0 0 3 0 3 0 0 3 50 0 10 0 6 0 0 0 0 0 0 0 0 0 0 3 0 6 0 4 0 0 0 100 100 100 0 100 0 100 0 0 0 100 100 100 0 100 100 0 100 0 0 0 100 100 0 0 0 0 0 19000 15000 2000 0 2000 0 85 0 72 72 6 8.33333302 0 6 8.33333302 66 66 100 100 0 13 3 14.0663652 14.0663652 2300 Yes Yes No No No Yes No No No No No No No Yes Yes Yes No No No No No No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No Yes No No No Yes Yes No No No No No Yes No No No No No No No No No No Yes No No No Yes Yes No No No No No Yes No No No Yes Yes No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No Yes Yes No No No No No No Yes No No No No No 51 to 100 51 to 100 41 to 50 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) Less often (6) 41 to 50 1 to 10 11 to 20 21 to 30 None None None None None 11 to 20 50% to 74% 50% to 74% 1001+ 1 to 10 1 to 10 11 to 20 Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 11 to 20 21 to 30 31 to 40 Have not spent anything Have not spent anything Have not spent anything Less often (6) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 100% 25% to 49% None None 1 to 10 25% to 49% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) 41 to 50 20 to 30 11 to 20 Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 11 to 20 51 to 100 51 to 100 1 to 10 21 to 30 31 to 40 11 to 20 25% to 49% 1 to 10 1% to 24% None None 11 to 20 50% to 74% 11 to 20 75% to 99% 1 to 10 31 to 40 Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No Yes No Yes Yes Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 5+ 5+ No Yes No Phone Urban England North West North White British White Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 22 7300 5000 2000 300 0 0 0 0 0 0 0 0 8600 1600 3000 4000 0 0 0 5000 3000 2000 0 2000 2000 0 43 0 0 18 8 4 3 0 0 3 2 0 20 0 0 5 2 0 23 0 0 8 4 0 0 0 0 8 4 0 0 0 0 7 0 0 0 0 0 0 0 0 2 15 0 0 0 0 0 6000 2 2 0 0 0 0 0 20 0 0 10 4 4 0 0 0 65.217392 65.217392 0 0 0 0 0 0 0 0 0 0 100 38.8888893 0 25 0 100 100 0 0 0 100 0 0 0 0 0 16900 8300 0 0 1600 7000 73 8 27 35 12 34.2857132 14 0 0 23 15 77.1428604 65.217392 2 38 5 14.9710493 14.9710493 2308 Yes No No Yes No Yes No No Yes No No No No Yes No No No No Yes Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) No Yes No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time Any Yes No Yes No No Yes No 2 2 Yes Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2000 2000 0 0 0 0 3 0 2 2 0 0 0 0 0 2 2 100 100 0 1 2 10.8361282 10.8361282 2310 Yes Yes Yes Yes No Yes Yes No Yes Yes Yes Yes No Yes Yes Yes No No No Yes No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No No Yes Yes Yes No No No No No Yes Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 51 to 100 41 to 50 41 to 50 51 to 100 None None 11 to 20 1% to 24% None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% 1 to 10 100% 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 Have not spent anything Have not spent anything Have not spent anything 41 to 50 Have not spent anything 101 to 200 51 to 100 51 to 100 101 to 200 1 to 10 1% to 24% 1 to 10 100% 21 to 30 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Neither agree nor disagree (0) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes No No No No Yes Yes Yes Yes No No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 0 0 0 0 0 0 0 0 100 2 2 2 2 2 50 1 1 1 1 1 50 1 1 1 1 1 100 2 2 2 2 2 0 0 0 2 0 0 0 0 0 2 0 0 20 2 0 2 0 2 2 0 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 100 100 100 0 0 0 100 100 100 100 100 100 0 100 0 0 0 100 100 0 0 100 100 100 5000 0 0 0 5000 0 110 55 55 110 2 1.81818187 100 26 23.636364 108 8 9.090909 7.40740728 0 0 4 14.413929 14.413929 2317 Yes No No No No No No No Yes Yes No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Yes Yes No No Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South West South White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 1060 0 0 300 160 600 500 500 0 0 0 0 900 700 0 200 0 0 0 200 200 0 0 1000 1000 0 3 2 0 1 1 3 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 1 1 3 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 2000 160 200 700 0 10 2 0 2 0 0 0 0 0 2 2 100 100 0 8 2 16.0742931 16.0742931 2321 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 12 0 0 0 0 0 0 3000 3000 0 3000 3000 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6600 6000 0 0 600 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2.60827494 2.60827494 32 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban England North West North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 400 0 0 0 0 0 400 0 0 0 0 1000 1000 0 0 0 0 0 6 2 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1400 1000 0 0 400 0 8 0 6 6 0 0 0 0 0 6 6 100 100 0 2 3 11.7109346 11.7109346 2331 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No Yes No No No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Strongly agree (4) No No No No No No No No No No No No Yes No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes Yes No Yes Yes 5+ 5+ No Yes No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 10.0924006 10.0924006 2332 Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No Yes Yes No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No No No No No No No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 Yes Yes No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 14.0663652 14.0663652 2349 Yes No No No Yes Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No Yes No Yes No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Don't know Slightly disagree (-2) Slightly disagree (-2) Don't know Yes Yes No Yes No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No Yes No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Rural England South East South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 3000 3000 0 5000 5000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 8 1 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8000 8000 0 0 0 0 14 0 5 5 0 0 0 0 0 5 5 100 100 0 9 2 10.8361282 10.8361282 2355 Yes No No No No Yes No No No No No Yes No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No Yes No No No No No No No Several times a day (730) No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Don't know Don't know Don't know Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 4 4 Yes Yes No Phone Urban England London South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6000 3000 0 0 3000 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 4 16.0742931 16.0742931 2359 Yes No No No No No No No Yes No No No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.70298147 2.70298147 33 Yes No Yes No No Yes Yes No Yes No No No No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes Yes No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 5000 3000 0 2000 0 0 0 0 0 0 0 699 699 0 0 0 0 2 4 1 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5699 2699 0 0 3000 0 7 0 4 4 0 0 0 0 0 4 4 100 100 0 3 5 14.9710493 14.9710493 2372 Yes Yes Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No Yes No No No No No No 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 Have not spent anything Have not spent anything 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 25% to 49% None None None 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAWI Kids 14 1500 1500 0 0 0 0 3500 3500 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 600 600 0 0 2 0 1 0 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 7100 4100 0 0 1500 1500 5 0 1 1 1 100 40 0 0 0 0 100 0 0 4 0 2.70298147 2.70298147 34 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes Yes No No No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No 51 to 100 51 to 100 41 to 50 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None 1 to 10 75% to 99% 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 Have not spent anything Have not spent anything 1 to 10 51 to 100 11 to 20 1 to 10 1 to 10 None None None None 1 to 10 75% to 99% 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban Scotland Scotland North White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 7500 5000 2500 0 0 0 1500 1500 0 0 0 0 800 800 0 0 0 0 0 0 0 0 0 2000 2000 0 6 2 0 0 0 4 0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 4 0 0 83.3333359 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11800 3500 0 0 800 7500 12 0 6 6 0 0 0 5 83.3333359 6 6 100 100 0 6 2 14.8424444 14.8424444 2377 Yes No No No No Yes No No No No No Yes No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No Yes No No No No No No No Several times a day (730) No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Don't know Don't know Slightly disagree (-2) Strongly disagree (-4) No No No Yes No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 5+ 5+ Yes Yes No Phone Urban Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 1000 0 0 0 1000 0 1 1 0 1 0 0 0 1 100 1 1 100 100 0 0 5 11.4333076 11.4333076 2388 Yes No Yes No No No No No Yes No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 100+ 3 1 to 10 11 to 20 1 to 10 1 to 10 51 to 100 51 to 100 Every 2-3 weeks (30) About once a week (52) About once a week (52) 51 to 100 21 to 30 21 to 30 41 to 50 1 to 10 1% to 24% 25% to 49% 11 to 20 1% to 24% 1 to 10 25% to 49% 25% to 49% 21 to 30 21 to 30 21 to 30 21 to 30 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 41 to 50 41 to 50 Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 51 to 100 20 to 30 1 to 10 20 to 30 51 to 100 21 to 30 21 to 30 51 to 100 11 to 20 1% to 24% 11 to 20 25% to 49% 11 to 20 25% to 49% 11 to 20 25% to 49% 11 to 20 25% to 49% 21 to 30 21 to 30 Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England London South White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 14 14000 1000 2000 1000 1000 9000 9000 4500 4500 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 75 6 0 0 0 0 25 2 0 0 0 0 25 2 0 0 0 0 50 4 0 0 0 0 10 2 0 0 0 0 10 2 0 0 0 0 12 2 0 0 0 0 0 10 2 0 0 0 0 25 25 25 0 0 0 0 0 25 2 0 0 0 0 20 28.5714283 24 25 40 50 50 50 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 5500 5500 3000 1000 3000 81 27 27 54 12 22.2222214 30.7692299 14 25.9259262 42 12 44.4444427 28.5714283 25 27 0 2.60827494 2.60827494 35 Yes No No No No No No No Yes Yes No Yes No Yes No Yes No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 50% to 74% 1 to 10 50% to 74% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England South East South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 1 1 0 0 0 0 0 0 1 0 0 2 1 1 1 0 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 1000 0 0 0 1000 0 5 0 5 5 0 0 0 0 0 5 3 60 60 0 0 4 10.8361282 10.8361282 2399 Yes No No No No Yes No No Yes Yes No Yes Yes Yes No Yes No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 None None None None None None None None None None None 11 to 20 Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) No Yes No Yes Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Not particularly confident (2) Yes No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 1 1 No No Yes Phone England Yorkshire and The Humber North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 21 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 21 0 1 1 0 0 0 0 0 1 0 0 0 0 20 1 10.0924006 10.0924006 2403 Yes Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No Several times a day (730) No No Yes Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Slightly confident (3) Yes No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 No No Yes Phone Urban England North East North White British White No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 500 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 1 0 0 0 8 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1000 500 0 0 0 9 1 0 1 1 100 0 0 0 0 0 100 0 0 8 3 10.0924006 10.0924006 2406 Yes No Yes No No Yes No No Yes No No No No Yes No Yes No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England London South Bangladeshi Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 10.8361282 10.8361282 2414 Yes Yes No No No Yes No No Yes No No Yes No Yes No Yes No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No Yes No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 31 to 40 31 to 40 31 to 40 None None None None 31 to 40 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 41 to 50 41 to 50 41 to 50 None None None None None None 41 to 50 100% 41 to 50 100% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Neither agree nor disagree (0) No No Yes Yes No No No No No No No No No No No No No No No No Yes Yes Yes Yes No Yes Yes Yes Yes No No Yes Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 5+ 5+ Yes No No Phone Urban England East Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 23 8200 8200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 3 0 0 0 0 0 0 0 0 0 0 40 3 0 0 0 0 40 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8200 0 0 0 0 8200 43 0 43 43 0 0 0 0 0 43 43 100 100 0 0 5 9.84904194 9.84904194 2422 Yes No Yes Yes No Yes Yes No No No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) No No No No No No No Yes No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 3000 0 3000 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 1 0 0 0 0 0 1 0 0 0 0 1 2 16.0742931 16.0742931 2425 Yes No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% None None None 1 to 10 50% to 74% 75% to 99% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything 1 to 10 Have not spent anything 11 to 20 31 to 40 11 to 20 1 to 10 11 to 20 11 to 20 1 to 10 25% to 49% None None None None 1 to 10 50% to 74% 1 to 10 75% to 99% None None Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes No No No Yes No No No No No Yes Yes No Yes No Yes No No Yes No Yes No No No No Yes Yes Yes Yes No No Yes Yes No No No No Yes No No No No No Yes Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 22 4000 3500 0 0 500 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 1 0 5 0 0 0 0 0 10 0 0 0 1 0 15 0 0 0 1 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33.3333321 0 0 70 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5500 0 500 0 1500 3500 16 5 11 16 5 31.25 0 0 0 11 8 81.25 72.727272 0 0 3 10.0924006 10.0924006 2432 Yes Yes No No No No No No No Yes Yes No No No No No No Yes Yes No Yes No No No No No No Yes No Yes No No No No No Yes No No No No No No Several times a day (730) No Yes Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No Yes No Yes No No Yes No No No No Yes No Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 20 to 30 11 to 20 Most days (365) 101 to 200 101 to 200 101 to 200 21 to 30 1% to 24% None 11 to 20 1% to 24% 11 to 20 1% to 24% 25% to 49% 11 to 20 100+ 100+ 51 to 100 About once a month (12) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 31 to 40 21 to 30 1 to 10 1 to 10 11 to 20 Have not spent anything Have not spent anything 11 to 20 1 to 10 50% to 74% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 51 to 100 Have not spent anything 11 to 20 Have not spent anything 101 to 200 1 to 10 101 to 200 101 to 200 31 to 40 25% to 49% 1 to 10 1% to 24% 11 to 20 1% to 24% 11 to 20 1% to 24% 11 to 20 25% to 49% 1 to 10 21 to 30 Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Yes No No Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No No Yes No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No Yes No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes Yes No Phone Urban Northern Ireland Northern Ireland North White Irish White No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 3600 2300 1300 20098 12099 7999 3500 500 400 1200 0 0 1400 0 0 0 0 0 0 0 0 135 10 7 0 0 0 0 5 0 0 0 0 123 3 0 0 0 0 123 8 0 0 0 0 30 4 0 0 0 0 0 0 4 0 0 0 12 3 0 0 0 0 0 14 4 0 0 0 0 0 0 0 0 0 2 0 0 12 2 7 0 0 0 0 0 0 0 24.3902435 0 9.75609779 15.0537634 35.7723579 50 0 37.5 100 100 0 57.1428566 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26798 15599 9299 0 1900 0 152 5 126 131 34 25.9541988 7.27272749 15 11.4503813 97 18 39.6946564 18.5567017 2 21 5 8.94357586 8.94357586 2441 Yes No No No No Yes No No Yes No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No Yes Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything None None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Yes No No Yes No No Yes No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Rural England South West South White British White No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 0 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.60827494 2.60827494 36 No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes No Yes No No Yes No No No No No No No No No Several times a day (730) Yes Yes No No No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No Yes Yes Yes Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes Yes Yes No No No No No Yes No No No No No No No 100+ 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 100+ 100+ Don't know Don't know Don't know 101 to 200 51 to 100 51 to 100 101 to 200 None None None None None 1 to 10 1% to 24% 1% to 24% 51 to 100 51 to 100 51 to 100 51 to 100 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Most days (365) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 51 to 100 41 to 50 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None 51 to 100 51 to 100 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 1 to 10 51 to 100 20 to 30 11 to 20 101 to 200 51 to 100 51 to 100 101 to 200 None None 1 to 10 1% to 24% None None 21 to 30 1% to 24% 21 to 30 1% to 24% 51 to 100 51 to 100 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes Yes No Phone Urban Scotland Scotland North African Minority Ethnic Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 24 23800 700 700 700 700 21000 0 0 0 0 0 0 6600 2200 2200 2200 0 0 0 0 0 0 0 6000 6000 0 168 2 22 3 2 1 56 0 0 0 2 0 56 2 22 0 0 0 112 2 22 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 22 0 0 0 56 56 56 0 0 0 0 0 56 0 0 3 0 1 0 0 0 2.67857146 2.67857146 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 20200 8900 700 7000 2200 1400 198 58 80 138 0 0 1.66666663 0 0 138 25 18.115942 18.115942 56 60 2 10.0057049 10.0057049 2461 Yes Yes No No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Less often (6) 21 to 30 1 to 10 1 to 10 None None 1% to 24% None None 1 to 10 100% 100% 11 to 20 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 21 to 30 1 to 10 1 to 10 None None 1 to 10 1% to 24% None None 1 to 10 100% 1 to 10 100% None 11 to 20 Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No Yes No No No No No No No No No No No No No No No No No Yes No No Yes No Yes No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No Yes No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes No No No Yes 3 3 Yes No No Phone England North West North White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 1300 0 0 1300 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 24 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 19 0 0 0 0 0 0 10.5263157 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1301 1300 0 0 1 0 24 0 5 5 0 0 10.5263157 0 0 5 5 100 100 0 19 3 14.9710493 14.9710493 2462 Yes No No Yes Yes Yes No No Yes Yes No Yes No Yes No No No No No Yes Yes No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes Yes No Yes Yes Yes No No No No No Yes Yes No No No No No No No No No Yes No No No Yes No No No No No No Yes Yes No Yes Yes Yes No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No Yes No No Yes No No Yes No No Yes No No No No No No 51 to 100 41 to 50 3 11 to 20 1 to 10 3 Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) About once a week (52) 41 to 50 1 to 10 1 to 10 11 to 20 11 to 20 100% None 1 to 10 50% to 74% 100% 1 to 10 1 to 10 1 to 10 21 to 30 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 31 to 40 21 to 30 Have not spent anything 31 to 40 1 to 10 Have not spent anything 1 to 10 About once a week (52) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% None None None 1 to 10 25% to 49% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 31 to 40 Have not spent anything 31 to 40 41 to 50 101 to 200 11 to 20 41 to 50 51 to 100 21 to 30 25% to 49% None None 1 to 10 1% to 24% 31 to 40 100% 31 to 40 100% 1 to 10 31 to 40 Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Yes Yes Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No Yes Yes No Yes No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No Yes No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time Any Yes No No No Yes No Yes 4 4 Yes Yes No Phone Urban England North West North White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 21 9000 3000 2000 1000 3000 0 0 0 0 0 0 0 8800 3000 0 4000 1000 0 800 0 0 0 0 1200 1200 0 48 0 3 18 30 2 10 0 0 10 0 0 8 0 3 2 30 0 18 0 3 12 30 0 18 0 0 12 0 0 0 0 0 0 0 0 9 0 0 0 0 0 5 0 0 3 0 30 0 10 1 1 0 0 0 0 0 30 0 0 6 0 2 100 0 50 0 100 0 0 0 0 0 0 0 0 100 100 100 0 0 41.6666679 0 100 0 0 0 100 100 0 0 0 0 0 19000 6200 4000 0 3800 5000 101 20 43 63 30 47.6190491 0 9 14.2857141 33 33 100 100 1 38 4 14.9710493 14.9710493 2475 Yes No Yes No Yes Yes No No Yes Yes No Yes No Yes No Yes No No Yes Yes No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes No No No Yes No No No No No Yes Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No Yes No No No No No Yes Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No Yes Yes Yes No Yes Yes No 51 to 100 51 to 100 41 to 50 3 1 to 10 1 to 10 Have not spent anything Have not spent anything Most days (365) Most days (365) 1001+ 201 to 500 201 to 500 501 to 1000 41 to 50 1% to 24% 100% 51 to 100 1% to 24% 201 to 500 25% to 49% 25% to 49% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None 1 to 10 50% to 74% 1 to 10 25% to 49% None None 1% to 24% Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 1% to 24% 1 to 10 100+ 20 to 30 1 to 10 Have not spent anything Have not spent anything 51 to 100 1001+ 501 to 1000 501 to 1000 1001+ 51 to 100 1% to 24% 51 to 100 75% to 99% 101 to 200 1% to 24% 201 to 500 25% to 49% 201 to 500 25% to 49% None 11 to 20 Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes Yes Yes No Yes Yes No No No No No No No Yes No No Yes No No No No No No No No No Yes Yes Yes Yes No Yes No Yes No No No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No Yes No Yes Yes No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking Any Yes No No No Yes Yes No 5+ 5+ Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 8899 5000 2500 1000 399 0 0 0 0 0 0 0 209 0 209 0 0 0 0 0 0 0 0 2000 2000 0 1010 3 0 10 15 5 500 0 0 0 5 0 500 3 0 10 10 0 1000 3 0 10 15 0 50 0 0 1 0 0 60 0 0 0 0 1 100 0 0 5 0 0 3 300 3 0 0 15 0 0 0 0 0 0 0 0 0 10 0 0 0 0 5 5 100 10 31.5789471 35 0 0 0 100 100 0 0 0 0 0 10 0 50 30 0 10 0 0 0 100 100 0 20 0 0 0 10899 3000 399 0 0 7500 1043 505 523 1028 51 4.96108961 92.4242401 105 10.2140074 977 318 35.8949432 32.5486183 0 15 5 9.84904194 9.84904194 2496 Yes No Yes No No Yes No No Yes Yes No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No Yes No No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything Less often (6) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 21 to 30 21 to 30 1 to 10 1% to 24% None None None None 21 to 30 100% 21 to 30 100% None 1 to 10 Don't know Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes No No No No No Yes No No No No No Yes Yes No No No No Yes Yes No No No No No No No Yes Yes Yes Yes No Yes Yes No Yes No No Yes Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England East Midlands Midlands White British White No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 0 0 0 0 0 0 5000 5000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 6 0 0 0 0 0 1 0 0 0 0 20 3 0 0 0 0 20 4 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 100 100 75 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 26 1 23 24 3 12.5 0 0 0 21 21 100 100 0 2 0 3.06872106 3.06872106 37 Yes Yes No No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) Yes No Yes No No No Yes No No No No Yes Yes Yes No No Yes Yes No No No No Yes Yes No No No No No No No No No Yes No Yes No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No Yes No No Yes No No 3 3 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) 201 to 500 201 to 500 21 to 30 201 to 500 None None None None None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything Have not spent anything Have not spent anything 11 to 20 20 to 30 201 to 500 201 to 500 21 to 30 201 to 500 None None None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% None None Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No Yes No No No No No No No No No No No Yes Yes Yes No No Yes No No No No No No No No No No No Yes Yes No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 5+ 5+ Yes No No Phone Urban England London South Any other white White Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 24 3000 3000 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 280 3 0 0 0 0 250 3 0 0 0 0 30 0 0 0 0 0 280 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4500 0 0 0 1500 3000 283 253 30 283 0 0 0 0 0 283 3 1.06007063 1.06007063 0 0 5 16.0742931 16.0742931 2502 Yes Yes Yes No No Yes No No No Yes No Yes No Yes Yes Yes No Yes No No No No No No No No No Yes No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 None 31 to 40 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes Yes Yes Yes Yes No Yes Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban England East Midlands Midlands White British White Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 22 0 0 0 0 0 0 8000 8000 0 0 0 0 3500 0 1500 0 0 0 2000 3500 1500 2000 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12000 10000 0 0 2000 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 14.6100512 14.6100512 2521 Yes No No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) No No No No Yes No No Yes Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 3 3 Yes No No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 22 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300 300 0 0 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1300 1300 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 9.84904194 9.84904194 2529 Yes No No No No Yes No No Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No Yes No No No No No Several times a day (730) No No Yes No Yes No No No No No No Yes Yes Yes No Yes No No No No No No No Yes Yes No Yes No No No No No No No No Yes No No No No No No No No Yes Yes Yes No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No Yes No No No No No No No No Yes No No No No No No 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Most days (365) 41 to 50 41 to 50 41 to 50 None None 1 to 10 1% to 24% None None None Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything Less often (6) Every 2-3 weeks (30) 11 to 20 1 to 10 11 to 20 11 to 20 1 to 10 1% to 24% 50% to 74% 1 to 10 1% to 24% 1 to 10 25% to 49% 25% to 49% 1 to 10 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 None None 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 25% to 49% 25% to 49% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 50% to 74% 1 to 10 100+ 51 to 100 11 to 20 1 to 10 1 to 10 1 to 10 51 to 100 1 to 10 51 to 100 51 to 100 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1 to 10 Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) No Yes Yes No No No No No No No No No No No Yes No No No No Yes No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No Yes No Yes No No No No No No Yes Yes Yes Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No Slightly confident (3) No No No No No No No No Yes No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Urban Scotland Scotland North Any other Asian Minority Ethnic No Yes No No No Yes No Yes No No Yes Yes No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 22 1677 199 79 0 1399 0 1999 1999 0 4000 4000 0 1048 799 0 0 0 249 0 0 0 0 0 1399 1399 0 50 18 1 8 0 2 0 2 0 0 0 0 50 15 0 8 0 0 50 17 0 8 0 0 0 3 0 0 0 0 0 2 0 0 0 1 1 1 0 1 0 0 1 0 4 0 2 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 2 0 0 2 0 0 17.6470585 50 5.88235283 28.5714283 41.1764717 0 0 0 0 0 0 0 12.5 12.5 25 25 0 0 0 0 0 0 50 0 0 0 10123 7398 1399 249 799 278 79 2 73 75 3 4 42.8571434 3 4 72 6 12 8.33333302 1 4 2 11.6103354 11.6103354 2539 No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes Yes Yes No No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 2-3 times a week (130) 21 to 30 11 to 20 1 to 10 21 to 30 None None 21 to 30 100% 21 to 30 100% 100% 41 to 50 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 31 to 40 31 to 40 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 41 to 50 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 Have not spent anything 20 to 30 Have not spent anything 31 to 40 11 to 20 1 to 10 21 to 30 None None 1 to 10 1% to 24% 21 to 30 100% 21 to 30 100% 21 to 30 100% 1 to 10 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No Yes No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England London South White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Kids 13 500 0 0 0 500 0 3500 3500 0 700 700 0 3700 2000 1000 0 0 0 700 5000 2500 2500 0 1200 1200 0 30 1 2 0 2 2 20 0 0 0 0 0 10 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 30 0 0 0 0 0 0 30 0 0 0 0 0 50 5 5 0 0 0 0 0 0 1 2 0 2 2 0 0 100 100 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11100 7900 500 0 2700 0 37 20 10 30 0 0 14.2857141 30 100 30 30 100 100 5 7 0 2.70298147 2.70298147 38 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) No No No No No No Yes No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 14 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 500 0 0 0 0 0 0 0 2000 2000 0 0 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 2.60827494 2.60827494 39 Yes Yes Yes No No Yes Yes No No No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything 31 to 40 Have not spent anything 11 to 20 None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time Any Yes No No Yes No No Yes 5+ 5+ Yes Yes No Phone Urban England South East South Chinese Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 20000 20000 0 0 0 0 3050 3050 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23050 20000 0 0 3050 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 5 15.476119 15.476119 2541 Yes No Yes No No Yes No No No Yes Yes Yes No Yes No Yes No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes Yes Yes No Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes Yes No No Yes No No No Yes No No No Yes No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 25% to 49% 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None None 1 to 10 100% 100% 1 to 10 Have not spent anything 1 to 10 Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 1 to 10 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% None None 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 1 to 10 1 to 10 Have not spent anything Have not spent anything 100+ 41 to 50 1 to 10 31 to 40 41 to 50 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 1% to 24% 41 to 50 100% 41 to 50 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes Yes Yes Yes Yes No Yes Yes No No No No No No No No No Yes No No Yes No No No No No No Yes Yes Yes Yes Yes No Yes Yes No No No No Yes Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes Yes Yes Yes No 5+ 5+ Yes No No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 21 17200 17200 0 0 0 0 0 0 0 100 0 100 0 0 0 0 0 0 0 100 0 100 0 297 297 0 3 6 3 2 28 2 2 3 2 1 0 0 1 3 1 1 28 1 3 6 3 2 28 1 0 1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 3 5 3 2 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 33.3333321 100 100 16.666666 0 0 100 100 0 0 0 100 100 0 0 0 50 100 100 0 0 0 100 100 100 50 0 0 100 17697 397 100 0 0 17200 44 8 35 43 2 4.65116262 33.3333321 1 2.32558131 41 41 100 100 0 1 5 11.7109346 11.7109346 2546 Yes No Yes No No Yes No No No Yes No Yes No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes Yes Yes Yes No Yes No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes Yes Yes No Yes No No No No Yes No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 100% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 41 to 50 20 to 30 11 to 20 About once a week (52) 11 to 20 11 to 20 11 to 20 1 to 10 1% to 24% 25% to 49% 1 to 10 25% to 49% 11 to 20 100% 100% 1 to 10 51 to 100 31 to 40 21 to 30 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 1 to 10 11 to 20 Have not spent anything 1 to 10 50% to 74% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 41 to 50 Have not spent anything 1 to 10 Have not spent anything 31 to 40 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 25% to 49% 11 to 20 100% 11 to 20 100% 1 to 10 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Yes Yes Yes Yes No Yes Yes Yes No No No No No No Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North Pakistani Minority Ethnic Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Kids 15 0 0 0 0 0 0 5000 3000 2000 5700 3400 2300 1000 1000 0 0 0 0 0 2300 1000 1300 0 0 0 0 6 17 4 3 3 0 5 0 0 0 0 0 1 14 2 3 0 0 6 14 2 3 0 0 1 3 1 0 0 0 1 2 0 0 2 0 2 5 1 0 0 0 0 5 11 1 3 0 0 2 1 1 0 0 0 0 0 0 3 2 0 3 0 16.666666 100 33.3333321 100 100 21.4285717 33.3333321 35.7142868 100 100 50 0 50 100 100 0 0 0 0 100 100 0 66.6666641 0 0 0 0 0 0 0 0 13000 7700 4300 0 1000 0 33 5 20 25 5 20 38.4615402 8 32 20 20 100 100 1 8 0 2.9604094 2.9604094 40 Yes No Yes Yes No Yes Yes No Yes Yes No No No Yes No Yes No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No No No No Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 11 to 20 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything Have not spent anything About once a week (52) About once a month (12) 21 to 30 11 to 20 1 to 10 11 to 20 11 to 20 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 11 to 20 1 to 10 21 to 30 21 to 30 100% None None None None None 100% None 1 to 10 Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No Yes Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No Yes Yes No Yes No No No Yes No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No Yes No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England South West South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 6000 1500 4500 0 0 0 0 4500 4500 0 0 0 0 0 0 0 0 5 21 0 0 0 0 5 15 0 0 0 0 0 5 0 0 0 0 5 20 0 0 0 0 5 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 100 0 0 0 100 0 0 0 0 0 1500 0 0 0 1500 0 26 20 5 25 25 100 0 0 0 0 0 100 0 0 1 4 12.5739346 12.5739346 2553 Yes No Yes No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time Any Yes No No No Yes Yes No 4 4 No Yes No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 0 0 0 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 11.7109346 11.7109346 2567 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No No No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes No No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No 51 to 100 51 to 100 31 to 40 11 to 20 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything 21 to 30 Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 100% None 1 to 10 1% to 24% 1 to 10 50% to 74% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 2-3 times a week (130) 51 to 100 51 to 100 51 to 100 None None 1 to 10 1% to 24% 51 to 100 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 1 to 10 1 to 10 51 to 100 101 to 200 101 to 200 101 to 200 1 to 10 1% to 24% None None 11 to 20 1% to 24% 51 to 100 100% 51 to 100 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 6000 4000 2000 0 0 0 1500 1500 0 0 0 0 3199 0 0 2500 0 699 0 699 0 0 699 1500 1500 0 0 1 0 14 100 4 0 0 0 0 0 0 0 0 0 10 100 0 0 0 0 10 100 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 1 10 0 6 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 1 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 10 60 0 100 0 0 10 100 100 0 0 0 0 0 13597 5500 699 699 699 6000 119 0 110 110 10 9.090909 0 11 10 100 100 100 100 0 9 2 14.9710493 14.9710493 2600 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 1 to 10 100% 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 1 50 100 1 50 1 1 100 100 0 0 2 10.8361282 10.8361282 2602 Yes No No No No Yes No No Yes No No No No Yes No No No No No Yes No No No No No No No No No Yes No No No No Yes No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything None None None Don't know Don't know Don't know Don't know Strongly agree (4) Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 0 0 0 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.70298147 2.70298147 41 Yes Yes Yes Yes Yes No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes No No No No No No No No No Yes No No No No No No Yes Yes Yes Yes Yes No No No Yes Yes No No No No No No 100+ 51 to 100 3 3 3 3 51 to 100 51 to 100 2-3 times a week (130) 2-3 times a week (130) 2-3 times a week (130) 501 to 1000 101 to 200 101 to 200 201 to 500 101 to 200 50% to 74% 50% to 74% 101 to 200 25% to 49% 41 to 50 25% to 49% 50% to 74% 101 to 200 51 to 100 51 to 100 201 to 500 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) 11 to 20 1 to 10 1 to 10 Most days (365) 2-3 times a week (130) 2-3 times a week (130) 101 to 200 21 to 30 21 to 30 51 to 100 11 to 20 25% to 49% 50% to 74% 1 to 10 1% to 24% 11 to 20 50% to 74% 50% to 74% 21 to 30 41 to 50 41 to 50 21 to 30 21 to 30 2-3 times a week (130) 51 to 100 21 to 30 21 to 30 11 to 20 50% to 74% 50% to 74% 11 to 20 50% to 74% 11 to 20 75% to 99% 75% to 99% 31 to 40 100+ 51 to 100 11 to 20 11 to 20 21 to 30 31 to 40 21 to 30 21 to 30 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 25% to 49% 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 50% to 74% 50% to 74% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) 51 to 100 51 to 100 20 to 30 11 to 20 2-3 times a week (130) 21 to 30 1 to 10 1 to 10 1 to 10 25% to 49% 25% to 49% 1 to 10 50% to 74% 1 to 10 50% to 74% 50% to 74% 21 to 30 21 to 30 21 to 30 Have not spent anything 21 to 30 50% to 74% 21 to 30 100+ 100+ 51 to 100 51 to 100 51 to 100 51 to 100 501 to 1000 201 to 500 201 to 500 201 to 500 201 to 500 50% to 74% 201 to 500 50% to 74% 101 to 200 25% to 49% 51 to 100 25% to 49% 51 to 100 50% to 74% 101 to 200 201 to 500 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes Yes Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Very confident (4) No No No No No No No No No No No No No Yes No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England East of England Midlands White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No Yes Yes No Yes No Yes Yes No Yes No Yes Yes No Yes Yes No Yes No Yes Yes No Yes No Yes Yes No Yes Yes No Yes No Yes Yes No Yes No Yes Yes No Yes No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 14 19610 2920 2350 2350 2350 9720 1100 350 750 4966 2906 2060 14400 2000 2000 2300 3200 2300 2600 9558 6040 2309 1209 2050 2050 0 650 110 62 9 27 30 200 30 0 0 0 0 150 30 30 3 3 0 350 60 30 3 3 0 200 20 15 1 1 0 300 50 33 2 12 21 150 10 15 1 2 0 1 50 20 12 1 1 0 156 80 80 30 0 0 0 0 300 50 32 6 24 30 57.1428566 60 42.8571434 33.3333321 71.4285736 33.3333321 71.4285736 16.666666 50 66.6666641 50 70.2127686 50 80 90 33.3333321 28.5714283 33.3333321 33.3333321 50 66.6666641 33.3333321 48 66.6666641 50 66.6666641 0 70 0 0 0 38453 12265 9569 5540 5809 5270 888 230 216 446 237 53.1390152 61.5611191 178 39.9103127 209 84 71.9730911 40.1913872 110 442 0 3.06872106 3.06872106 42 Yes No No No No Yes No No No Yes No No No Yes No No No No Yes No Yes No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 1 to 10 Have not spent anything Have not spent anything 11 to 20 41 to 50 21 to 30 21 to 30 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) No No Yes No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 3 3 No Yes No Phone Rural England East of England Midlands White British White No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 20 5000 5000 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 500 500 0 0 2 0 0 20 2 0 0 0 0 0 0 0 2 0 0 20 0 0 2 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 7500 500 0 0 2000 5000 24 0 22 22 0 0 0 0 0 22 22 100 100 0 2 3 9.84904194 9.84904194 2651 Yes No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No Yes No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 4 4 No Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 24 0 0 0 0 0 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 12.5739346 12.5739346 2664 Yes No Yes No No Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No Yes No No No No No No No Several times a day (730) Yes No No No Yes No No Yes No No No Yes Yes No No No Yes Yes No No No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 3 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 31 to 40 21 to 30 21 to 30 None None None None None 21 to 30 100% 100% 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 1 to 10 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 20 to 30 Have not spent anything Have not spent anything 11 to 20 11 to 20 51 to 100 1 to 10 51 to 100 51 to 100 None None None None None None 51 to 100 75% to 99% 51 to 100 75% to 99% None 11 to 20 Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes Yes Yes No Yes No Yes No No No No No Yes Yes Yes Yes No No Yes Yes No No No Yes Yes No No No No No Yes No No Yes No No Yes Yes No Yes Yes No No No No No No No No No No No No No No No No No Yes No Yes No No Yes Yes Yes Yes No No No No No No No No No Very confident (4) Yes No No No No No No No No No No Yes No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes No No Yes Yes No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 23 2700 1500 0 1200 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 1000 1000 0 40 0 0 0 25 5 0 0 0 0 0 4 30 0 0 0 25 0 30 0 0 0 25 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 25 0 0 0 0 0 0 0 0 0 10 0 0 0 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5700 2200 0 0 2000 1500 70 4 55 59 0 0 0 0 0 59 55 93.2203369 93.2203369 0 11 2 14.9710493 14.9710493 2695 Yes Yes No Yes Yes Yes Yes No No No Yes Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything About once a week (52) 51 to 100 51 to 100 51 to 100 None None None None None 51 to 100 100% 100% 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 51 to 100 51 to 100 None None None None None None 51 to 100 100% 51 to 100 100% None 1 to 10 Strongly disagree (-4) Don't know Strongly agree (4) Strongly disagree (-4) Don't know Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) No Yes Yes No No No No No No Yes Yes No No No No No No No No No Yes Yes Yes Yes No No No No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South East South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 900 0 400 500 0 0 0 900 400 500 0 3000 3000 0 0 0 0 1 61 6 0 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4000 4000 0 0 0 0 68 0 60 60 0 0 0 0 0 60 60 100 100 0 8 2 16.0742931 16.0742931 2701 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.06790113 3.06790113 43 Yes No No Yes No Yes No No Yes Yes No Yes Yes Yes No No No Yes No No Yes No No No No No No No No Yes Yes No Yes No No Yes Yes No No No No No 2-4 days a week (156) No No No No No No No No No Yes No Yes Yes Yes Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes Yes Yes No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No 100+ 51 to 100 1 to 10 51 to 100 Have not spent anything Have not spent anything 3 3 Less often (6) 11 to 20 11 to 20 11 to 20 1 to 10 50% to 74% None None None None None 50% to 74% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None None 51 to 100 51 to 100 1 to 10 51 to 100 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 1 to 10 Have not spent anything 1 to 10 1 to 10 51 to 100 11 to 20 11 to 20 11 to 20 1 to 10 25% to 49% None None 1 to 10 25% to 49% None None None 25% to 49% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Don't know Don't know Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Yes No No Yes No Yes No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes Yes No Yes Yes Yes No Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South West South White British White No Yes No No Yes No Yes Yes No Yes No Yes Yes No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 15 12909 3 9906 0 0 3000 0 0 0 0 0 0 9945 30 9905 10 0 0 0 0 0 0 0 0 0 0 12 2 3 2 0 0 0 0 0 0 0 0 12 2 3 0 0 0 12 2 3 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 58.3333321 0 0 0 58.3333321 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10949 10 0 1000 30 9909 19 0 17 17 7 41.1764717 0 5 29.4117641 10 0 41.1764717 0 0 2 0 2.70298147 2.70298147 44 Yes No Yes Yes No Yes Yes No Yes Yes No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes No Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No No Yes No No No No Yes Yes No No Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No No Yes No No No No Yes No Yes Yes No No Yes No Yes No Yes Yes Yes No Yes No Yes No Yes Yes No No Yes No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything About once a week (52) Most days (365) 2-3 times a week (130) 101 to 200 51 to 100 51 to 100 101 to 200 None None None None None None None 201 to 500 201 to 500 201 to 500 Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything About once a week (52) 21 to 30 1 to 10 1 to 10 None None 1% to 24% None None 1 to 10 75% to 99% 75% to 99% 11 to 20 51 to 100 51 to 100 Have not spent anything 2-3 times a week (130) 41 to 50 11 to 20 11 to 20 None None None None None 1 to 10 50% to 74% 50% to 74% 21 to 30 41 to 50 31 to 40 11 to 20 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) 41 to 50 1 to 10 21 to 30 31 to 40 None None None None None 1 to 10 1% to 24% 11 to 20 50% to 74% 50% to 74% 1 to 10 Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 20 to 30 Have not spent anything 20 to 30 Have not spent anything Less often (6) About once a week (52) 31 to 40 1 to 10 21 to 30 31 to 40 None None None None 31 to 40 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 20 to 30 Have not spent anything 11 to 20 51 to 100 201 to 500 51 to 100 101 to 200 201 to 500 None None 1 to 10 1% to 24% None None 51 to 100 25% to 49% 51 to 100 25% to 49% 201 to 500 51 to 100 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No Yes Yes No No No No No Yes Yes Yes No No Yes No No No No Yes Yes Yes Yes No Yes No No Yes Yes Yes No No Yes Yes No Yes Yes No No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban Wales Wales Midlands White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Kids 12 10000 7000 0 0 3000 0 6000 6000 0 6000 6000 0 5000 2000 2000 1000 0 0 0 2500 0 2500 0 3000 3000 0 140 30 50 50 32 6 60 0 0 10 2 0 80 10 20 30 30 0 140 10 20 40 32 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 5 0 8 10 20 32 0 400 400 400 0 0 0 0 0 0 20 30 10 0 6 0 0 0 0 0 0 20 0 80 80 0 0 0 50 50 0 0 0 12.5 50 50 0 0 0 100 100 0 0 0 0 0 30500 18500 3000 0 2000 7000 308 72 170 242 0 0 6.060606 0 0 242 70 28.9256191 28.9256191 400 66 0 3.18014598 3.18014598 45 Yes No Yes No No Yes Yes No No No No No No Yes No No No No No Yes No No Yes No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes Yes Yes No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Every 2-3 weeks (30) Less often (6) 31 to 40 21 to 30 1 to 10 31 to 40 None None 1 to 10 1% to 24% 21 to 30 75% to 99% 75% to 99% 21 to 30 1 to 10 1 to 10 Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 21 to 30 1 to 10 31 to 40 None None None None 1 to 10 1% to 24% 21 to 30 75% to 99% 21 to 30 75% to 99% 1 to 10 None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Part time Any Yes No Yes No No No Yes 5+ 5+ Yes Yes No Phone Urban Scotland Scotland North White British White Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 900 0 900 0 0 0 0 0 0 0 0 0 0 0 35 0 0 0 0 0 30 0 0 0 0 0 5 0 0 0 0 0 35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 30 0 0 0 0 0 30 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 14.2857141 85.7142868 85.7142868 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 30 5 35 0 0 0 5 14.2857141 35 30 85.7142868 85.7142868 5 0 5 10.0057049 10.0057049 2705 Yes No No No No Yes No No No Yes No Yes No Yes No No No No No No No No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No Yes No No No Yes No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Don't know Don't know Strongly agree (4) Don't know Strongly agree (4) Strongly agree (4) Don't know Don't know No No Yes Yes No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Part time Any Yes No Yes Yes No Yes Yes 5+ 5+ No Yes No Phone Urban England London South Bangladeshi Minority Ethnic No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1000 0 0 0 1000 0 2 0 2 2 0 0 0 0 0 2 2 100 100 0 0 5 10.8361282 10.8361282 2706 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No Yes No Yes No No Yes No No No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 11 to 20 Have not spent anything Have not spent anything Less often (6) 11 to 20 11 to 20 11 to 20 None None None None None 11 to 20 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 1 to 10 11 to 20 Have not spent anything Have not spent anything 21 to 30 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% None None None None 21 to 30 100% 21 to 30 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 0 0 0 1500 0 1500 1500 0 0 500 0 500 2 0 0 2 16 10 0 0 0 0 0 10 2 0 0 2 15 0 2 0 0 2 15 10 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 15 8 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 20 0 0 100 100 2000 0 500 1500 0 0 30 10 19 29 2 6.89655161 0 0 0 27 27 100 100 0 1 4 9.84904194 9.84904194 2708 Yes No Yes No Yes Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No Yes Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None 1 to 10 1% to 24% 41 to 50 100% 100% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 101 to 200 101 to 200 101 to 200 None None None None 101 to 200 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 101 to 200 101 to 200 101 to 200 None None None None 1 to 10 1% to 24% 101 to 200 100% 101 to 200 100% None None Slightly disagree (-2) Don't know Slightly agree (2) Neither agree nor disagree (0) Don't know Slightly agree (2) Don't know Strongly agree (4) No No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes Yes No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 110 0 0 0 0 0 0 0 50 0 0 0 110 0 50 0 0 0 110 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 50 0 0 0 110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 160 0 160 160 0 0 0 10 6.25 160 160 100 100 0 0 2 10.0924006 10.0924006 2725 Yes No Yes No No Yes No No Yes No No Yes No Yes No No No Yes No No Yes No No No No No No No No No Yes No Yes No Yes Yes Yes No No No No No Several times a day (730) No No No No No Yes No Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No Yes No Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 21 to 30 1 to 10 11 to 20 21 to 30 None None None None 21 to 30 100% 100% 21 to 30 1 to 10 11 to 20 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything 51 to 100 1 to 10 41 to 50 51 to 100 1 to 10 1% to 24% None None None None 51 to 100 100% 51 to 100 100% None 1 to 10 Don't know Don't know Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Yes No No No No Yes No No No No No No No Yes Yes No Yes No No No No No No Yes No No No No Yes Yes No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South West South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 2500 1500 0 1000 0 0 0 0 0 0 0 2500 500 2000 30 0 0 1 26 5 0 0 0 0 6 4 30 0 0 0 20 0 30 0 0 0 26 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 26 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 5000 1500 2000 0 1500 0 62 10 50 60 4 6.66666651 0 0 0 56 56 100 100 0 2 0 2.60827494 2.60827494 46 Yes Yes No Yes No Yes No No No Yes Yes No No Yes No Yes No Yes No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes No No Yes No No No Yes Yes Yes Yes Yes No Yes Yes No No No No No No No Yes No No No No No No Yes Yes No Yes Yes No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No Yes No No No No No No No Yes Yes No No No No No No Yes Yes No No No No No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 201 to 500 101 to 200 101 to 200 201 to 500 None None 101 to 200 50% to 74% None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 201 to 500 101 to 200 51 to 100 201 to 500 None None 101 to 200 25% to 49% None None None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) Most days (365) 501 to 1000 501 to 1000 51 to 100 501 to 1000 None None None None 501 to 1000 50% to 74% None None None 51 to 100 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1001+ 1001+ 201 to 500 1001+ None None None None 201 to 500 1% to 24% None None None None 51 to 100 None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 3 Yes Yes No Phone England West Midlands Midlands White & Asian Minority Ethnic Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300 1 300 1000 0 0 150 0 200 900 0 0 150 1 100 100 0 0 300 1 300 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 150 0 120 0 0 0 600 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 40 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1601 1250 351 1601 0 0 0 270 16.86446 1601 0 0 0 100 0 3 9.84904194 9.84904194 2732 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) No No No Yes No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England West Midlands Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 14 500 0 500 0 0 0 0 0 0 0 0 0 2500 500 0 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3000 2000 0 0 500 500 10 0 5 5 0 0 0 0 0 5 5 100 100 0 5 0 3.06872106 3.06872106 47 Yes No Yes Yes No Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No 51 to 100 3 3 Have not spent anything 3 Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 31 to 40 31 to 40 None None 25% to 49% 11 to 20 25% to 49% 31 to 40 100% 100% 21 to 30 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 20 to 30 51 to 100 51 to 100 51 to 100 None None 1 to 10 25% to 49% 11 to 20 1% to 24% 51 to 100 100% 51 to 100 100% None 21 to 30 Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Don't know Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England East Midlands Midlands White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 15 5500 2500 0 3000 0 0 3000 3000 0 0 0 0 1200 1200 0 0 0 0 0 0 0 0 0 0 0 0 67 1 0 0 24 0 0 0 0 0 0 0 40 0 0 0 24 0 40 0 0 0 24 0 0 0 0 0 0 0 8 0 0 0 0 0 12 0 0 0 0 0 0 40 0 0 0 24 0 0 0 0 0 0 0 0 0 27 1 0 0 0 0 0 29.6296291 30 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 9700 6000 0 0 1200 2500 92 0 64 64 0 0 28.5714283 12 18.75 64 64 100 100 0 28 0 3.06872106 3.06872106 48 Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 Have not spent anything Have not spent anything Most days (365) 21 to 30 11 to 20 11 to 20 1 to 10 1% to 24% 50% to 74% 1 to 10 1% to 24% 11 to 20 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 11 to 20 Have not spent anything 11 to 20 Have not spent anything 21 to 30 11 to 20 11 to 20 1 to 10 1% to 24% 1 to 10 75% to 99% 1 to 10 1% to 24% 11 to 20 100% 11 to 20 100% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time Any Yes No No No Yes Yes No 5+ 5+ Yes No No Phone England North East North White British White No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 22 3000 0 0 1500 1500 0 4500 4500 0 0 0 0 1200 1200 0 0 0 0 0 0 0 0 0 3500 3500 0 22 1 0 0 0 4 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 1 0 0 0 0 0 2 1 0 0 0 4 2 0 0 0 0 0 0 19 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 4 5 66.6666641 10 100 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 12200 9500 1500 0 1200 0 27 0 20 20 1 5 87.5 2 10 19 19 100 100 0 7 5 14.413929 14.413929 2740 Yes No No No No Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No Yes Yes Yes Yes No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes Yes Yes Yes No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes Yes Yes No No No No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None Likely (3) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 31 to 40 21 to 30 1 to 10 31 to 40 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 31 to 40 11 to 20 41 to 50 None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes No Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No Yes Yes No No No No No Yes Yes Yes Yes Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England West Midlands Midlands White British White No Yes No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 22 0 0 0 0 0 0 2500 2500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5 1 6 37 0 0 1 1 3 27 0 1 0 0 3 10 0 1 1 1 6 37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 50 32 14 46 0 0 0 1 2.173913 46 1 2.173913 2.173913 0 4 3 9.84904194 9.84904194 2743 Yes No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No Several times a day (730) No Yes No No No No No No No No No Yes Yes No No Yes Yes No No No No No No Yes No No No Yes No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No Yes No No No No No Yes No No No No No No No No No Yes No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 1 to 10 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None None None None None None None 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 1 to 10 Have not spent anything Most days (365) 1 to 10 100% 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 31 to 40 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 11 to 20 None None 1 to 10 25% to 49% None None None None None None 1 to 10 1 to 10 Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North Any other Black Minority Ethnic No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes No No Yes Yes No CAWI Kids 12 0 0 0 0 0 0 2000 2000 0 0 0 0 2550 750 300 1500 0 0 0 600 300 300 0 0 0 0 0 1 0 14 1 0 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 4550 3800 0 0 750 0 16 0 13 13 0 0 33.3333321 0 0 13 0 0 0 1 3 0 2.9604094 2.9604094 49 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes Yes Yes No No No Yes Yes No No No No No Several times a day (730) No No Yes Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 101 to 200 51 to 100 51 to 100 None None 50% to 74% 11 to 20 1% to 24% 51 to 100 100% 100% 11 to 20 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything Less often (6) About once a month (12) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 51 to 100 11 to 20 1 to 10 21 to 30 Have not spent anything 11 to 20 21 to 30 Most days (365) 51 to 100 41 to 50 41 to 50 41 to 50 75% to 99% None 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything Have not spent anything Most days (365) 101 to 200 51 to 100 51 to 100 None None None None None 51 to 100 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything 11 to 20 41 to 50 Have not spent anything 201 to 500 1 to 10 201 to 500 201 to 500 51 to 100 1% to 24% 1 to 10 1% to 24% 11 to 20 1% to 24% 201 to 500 100% 201 to 500 100% None 21 to 30 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes Yes Yes No No No No Yes No No No No No Yes Yes No Yes Yes Yes Yes Yes No Yes Yes No No No No Yes Yes Yes Yes Yes No Yes Yes Yes No No Yes Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England South West South White British White No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 300 0 0 300 0 0 10000 10000 0 0 0 0 9100 2000 1000 2500 0 1200 2400 1500 1500 0 0 0 0 0 112 14 6 55 102 0 0 3 3 0 0 0 100 5 3 50 100 0 100 8 6 50 100 0 0 6 0 45 0 0 6 0 0 0 0 0 12 0 0 5 0 0 2 100 2 6 5 100 0 0 0 0 0 0 0 0 0 12 6 0 5 2 0 0 50 12 100 100 75 0 0 100 100 0 0 0 100 100 90 0 10 4 100 100 0 0 0 100 100 0 0 0 0 0 18400 12800 0 1200 4400 0 289 6 258 264 51 19.318182 7.89473677 17 6.439394 213 213 100 100 0 25 3 10.8361282 10.8361282 2768 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes Yes No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 101 to 200 101 to 200 101 to 200 None None None None 101 to 200 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 31 to 40 20 to 30 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 1 to 10 Have not spent anything 11 to 20 Have not spent anything 201 to 500 201 to 500 201 to 500 1 to 10 1% to 24% None None 1 to 10 1% to 24% 201 to 500 100% 201 to 500 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England North West North White British White No Yes No No No Yes No Yes Yes No No No Yes No Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 15 0 0 0 0 0 0 3300 3000 300 0 0 0 3000 2000 0 1000 0 0 0 0 0 0 0 0 0 0 200 8 0 2 6 0 0 0 0 0 0 0 200 6 0 0 6 0 200 6 0 0 6 0 0 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 200 3 0 0 6 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 100 100 50 0 50 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 6300 4000 300 0 2000 0 216 0 212 212 3 1.41509438 0 3 1.41509438 209 209 100 100 0 4 0 2.9604094 2.9604094 50 Yes No Yes No No Yes No No No No No Yes No Yes No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Don't know Don't know Don't know Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 10.0924006 10.0924006 2771 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) No No No No Yes No Yes No No No No Yes Yes No Yes Yes No Yes Yes No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No Yes No No 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 50% to 74% 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 100% 1 to 10 31 to 40 11 to 20 11 to 20 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything 2-3 times a week (130) Don't know 11 to 20 1 to 10 1 to 10 1 to 10 1% to 24% 50% to 74% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 50% to 74% 1 to 10 51 to 100 51 to 100 1 to 10 1 to 10 11 to 20 1 to 10 11 to 20 1 to 10 1 to 10 1 to 10 1% to 24% 1 to 10 50% to 74% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% 1 to 10 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No Yes No No Yes No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No No Yes 5+ 5+ No Yes No Phone Urban England London South White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 22 302 100 101 101 0 0 775 775 0 2520 2520 0 3825 1010 775 1500 400 140 0 440 150 290 0 350 350 0 1 2 1 11 1 2 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 1 0 0 2 0 0 0 9 0 0 0 0 0 0 0 2 0 0 1 2 1 1 1 2 0 100 0 0 0 0 50 0 0 0 0 100 0 0 0 10 50 10 20 100 100 0 100 0 0 0 0 50 0 0 0 7287 5536 400 140 1010 201 18 0 10 10 1 10 66.6666641 1 10 9 9 100 100 2 8 5 12.5739346 12.5739346 2783 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No No No No No Yes No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 1 to 10 Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban Northern Ireland Northern Ireland North White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 23 1000 0 0 0 1000 0 0 0 0 0 0 0 3000 1000 0 2000 0 0 0 2000 0 2000 0 2000 2000 0 5 0 0 2 0 2 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8000 6000 1000 0 1000 0 9 5 0 5 5 100 0 0 0 0 0 100 0 0 4 2 11.4333076 11.4333076 2804 Yes No Yes Yes No Yes No No Yes Yes Yes Yes Yes Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No Yes No Yes Yes Yes 5+ 5+ Yes No No Phone Urban England West Midlands Midlands White & Asian Minority Ethnic Yes Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 500 500 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 500 0 0 1500 0 4 2 0 2 2 100 0 0 0 0 0 100 0 0 2 5 11.4285479 11.4285479 2808 Yes No Yes No No Yes No No No Yes Yes Yes No Yes No Yes No No No No No No Yes No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes No No No No No No Yes No No No No Yes No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England South East South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 2500 2000 500 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 3000 1000 0 0 2000 0 3 0 2 2 2 100 0 0 0 0 0 100 0 0 1 3 16.0742931 16.0742931 2818 Yes Yes No No No Yes No No No No No No No Yes No No No Yes No No Yes No No No No Yes No No No Yes No No Yes No No No Yes No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 11 to 20 11 to 20 11 to 20 None None None None None None None Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 1 to 10 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 100+ 100+ Have not spent anything 11 to 20 None 11 to 20 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 21 to 30 1 to 10 21 to 30 None None None None None None 1 to 10 25% to 49% 1 to 10 25% to 49% None 11 to 20 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No Yes No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes Yes No Phone Urban Wales Wales Midlands White British White Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12000 12000 0 20 3 0 6 2 12 20 0 0 6 1 0 0 0 0 0 1 0 20 0 0 6 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 6 2 0 0 0 0 0 0 0 0 0 0 3 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 100 100 0 0 0 100 100 0 0 0 0 0 15000 15000 0 0 0 0 43 27 1 28 0 0 0 0 0 28 8 28.5714283 28.5714283 0 15 1 11.4285479 11.4285479 2832 Yes No No No No No No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 51 to 100 11 to 20 1 to 10 11 to 20 1 to 10 1 to 10 31 to 40 31 to 40 Most days (365) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 20 to 30 11 to 20 11 to 20 Most days (365) 21 to 30 11 to 20 11 to 20 1 to 10 1% to 24% 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 25% to 49% 11 to 20 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 31 to 40 21 to 30 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 11 to 20 100% 11 to 20 20 to 30 11 to 20 11 to 20 Have not spent anything 11 to 20 100% 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 41 to 50 11 to 20 11 to 20 11 to 20 11 to 20 51 to 100 11 to 20 1 to 10 11 to 20 1 to 10 1% to 24% 21 to 30 50% to 74% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 31 to 40 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No Yes No No Yes Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Urban England Yorkshire and The Humber North White British White No Yes Yes Yes No No Yes No Yes No No No Yes Yes No No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 5094 101 1101 101 101 3870 2058 1029 1029 1001 1001 0 3841 1203 1203 1233 0 0 202 2424 1212 1212 0 101 101 0 2 24 1 12 12 1 0 12 0 0 0 0 1 0 0 0 0 0 1 12 0 0 0 0 1 2 0 0 0 0 1 2 1 12 12 1 1 2 0 0 0 0 0 0 2 0 0 0 0 1 1 1 0 0 0 0 0 1 12 1 12 12 1 100 50 100 0 100 16.666666 14.2857141 16.666666 20 33.3333321 0 100 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 9704 4677 1130 1290 1405 1202 52 12 1 13 3 23.0769234 69.0476227 3 23.0769234 10 2 38.4615402 20 1 39 4 11.7109346 11.7109346 2867 Yes Yes No No No Yes No No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes Yes No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes No Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No Yes No No 11 to 20 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 51 to 100 1 to 10 41 to 50 51 to 100 None None None 1 to 10 1% to 24% 51 to 100 75% to 99% 75% to 99% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 11 to 20 1 to 10 About once a month (12) About once a week (52) 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 Less often (6) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Most days (365) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 1 to 10 1% to 24% 1 to 10 50% to 74% 50% to 74% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 201 to 500 201 to 500 201 to 500 None None None None 101 to 200 50% to 74% 50% to 74% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 1 to 10 Have not spent anything 41 to 50 1 to 10 201 to 500 21 to 30 201 to 500 201 to 500 None None None None 1 to 10 1% to 24% 201 to 500 50% to 74% 201 to 500 50% to 74% None 11 to 20 Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes Yes Yes No No No Yes No No No No Yes Yes Yes Yes Yes No Yes No No No No Yes Yes Yes No No No No Yes Yes Yes No No Yes No No No Yes Yes No Yes No Yes No No No No No No No No No No No Yes No Yes Yes Yes No No No No No No No No No Yes No No No No No Not particularly confident (2) No No Yes No No No No No No No No No Yes No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 3 3 No Yes No Phone Urban England London South Any other white White Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 22 2000 0 1000 1000 0 0 2100 2000 100 500 0 500 4500 4500 0 0 0 0 0 0 0 0 0 0 0 0 70 13 6 15 300 0 10 5 3 5 0 0 50 3 3 10 300 0 60 8 6 15 300 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 2 55 8 6 10 150 0 0 0 0 0 0 0 0 0 10 5 0 0 0 0 0 0 8.33333302 91.6666641 91.6666641 0 0 0 100 100 0 0 0 100 100 0 0 0 13.333333 66.6666641 66.6666641 0 0 0 50 50 0 0 0 0 0 9100 3000 600 0 4500 1000 404 23 366 389 0 0 0 5 1.28534698 389 229 58.8688965 58.8688965 0 15 3 12.5739346 12.5739346 2870 Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Several times a day (730) No No Yes No Yes No No No No No No Yes Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 1 to 10 11 to 20 Most days (365) Most days (365) 21 to 30 1 to 10 11 to 20 21 to 30 21 to 30 100% None None None 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 20 to 30 31 to 40 Have not spent anything 1 to 10 Have not spent anything 21 to 30 11 to 20 11 to 20 21 to 30 21 to 30 75% to 99% 1 to 10 1% to 24% None None None None None 75% to 99% None 1 to 10 Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Don't know Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 1 1 Yes No No Phone Urban Wales Wales Midlands White British White No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 23 0 0 0 0 0 0 2100 100 2000 600 600 0 2000 800 0 0 1200 0 0 1000 0 1000 0 500 500 0 0 23 1 2 0 1 0 10 0 2 0 0 0 12 0 0 0 0 0 22 0 2 0 0 0 22 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 6200 2200 3200 0 800 0 27 12 12 24 22 91.6666641 4 0 0 2 0 91.6666641 0 0 3 1 11.4285479 11.4285479 2876 Yes No No No No No No No No No No No No Yes No No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) No No No Yes No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.70298147 2.70298147 51 Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No Once a day (365) Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No Yes No 3 3 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 20 to 30 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Don't know Slightly agree (2) Don't know Slightly disagree (-2) Yes Yes No No No Yes No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No No Yes Phone Urban England North East North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 14 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 0 0 0 0 3000 6 6 0 6 0 0 0 0 0 6 6 100 100 0 0 0 2.9604094 2.9604094 52 Yes Yes No No No Yes No No No Yes No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No Yes No No No No No Yes Yes Yes No No No 51 to 100 41 to 50 41 to 50 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Most days (365) 101 to 200 51 to 100 51 to 100 None None 100% None None 51 to 100 100% 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 1 to 10 50% to 74% 50% to 74% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 11 to 20 1 to 10 Have not spent anything 11 to 20 41 to 50 101 to 200 1 to 10 101 to 200 101 to 200 None None 1 to 10 75% to 99% None None 101 to 200 75% to 99% 101 to 200 75% to 99% None 11 to 20 Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Yes Yes No Yes No No No No Yes No No No No Yes Yes Yes Yes Yes No Yes No No No No No Yes No No No No No Yes Yes Yes No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No Yes Yes Yes No No No No Not at all confident (1) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Urban England South West South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 23 7000 5000 0 1000 1000 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 500 500 0 110 0 1 0 15 2 0 0 1 0 0 0 100 0 0 0 15 0 100 0 1 0 15 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 100 0 1 0 10 0 0 0 0 0 0 0 0 0 10 0 0 0 0 2 0 100 0 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 66.6666641 66.6666641 0 0 0 0 0 9000 1500 1000 0 1500 5000 128 1 115 116 0 0 83.3333359 0 0 116 111 95.6896515 95.6896515 0 12 2 10.8361282 10.8361282 2879 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No No No Yes Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 51 to 100 11 to 20 11 to 20 Have not spent anything Have not spent anything 11 to 20 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 51 to 100 51 to 100 21 to 30 11 to 20 11 to 20 1 to 10 1% to 24% None None None None 11 to 20 100% 11 to 20 100% None 11 to 20 Neither agree nor disagree (0) Don't know Slightly agree (2) Slightly agree (2) Don't know Slightly agree (2) Don't know Don't know No No No No No No No Yes Yes No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time Any Yes No Yes No No Yes No 5+ 5+ Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 22 8000 8000 0 0 0 0 0 0 0 0 0 0 12000 6000 2000 2000 0 0 2000 3000 3000 0 0 6000 6000 0 0 0 0 9 13 7 0 0 0 0 0 0 0 0 0 5 10 0 0 0 0 5 10 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10 0 0 0 0 0 0 0 0 0 0 0 0 4 3 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 24000 8000 0 0 8000 8000 29 0 15 15 3 20 0 0 0 12 12 100 100 0 14 5 10.0924006 10.0924006 2887 Yes No No No No Yes No No No Yes No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No Yes No No No No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Don't know Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Yes Yes Yes Yes No No No No No No No No Yes No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 3 3 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 800 800 0 0 0 0 0 15 10 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 800 800 0 0 0 0 25 0 15 15 0 0 0 0 0 15 15 100 100 0 10 3 14.9710493 14.9710493 2895 Yes Yes No No Yes Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No Several times a day (730) Yes No No Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No No No No No No Yes No No No Yes Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes Yes No No No No No Yes No Yes Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 1 to 10 1% to 24% 1% to 24% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 41 to 50 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a month (12) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None None 1 to 10 25% to 49% 1 to 10 1% to 24% 25% to 49% 1 to 10 Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 1 to 10 Every 2-3 weeks (30) Most days (365) 51 to 100 1 to 10 41 to 50 51 to 100 None None None None 41 to 50 75% to 99% 75% to 99% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 11 to 20 1 to 10 Have not spent anything 51 to 100 Have not spent anything 51 to 100 11 to 20 51 to 100 51 to 100 1 to 10 1% to 24% None None None None 51 to 100 50% to 74% 51 to 100 50% to 74% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes Yes Yes Yes No No No No No No No Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes No Yes Yes No No No No No No No No No No No No No Yes No Yes Yes No No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No Yes Yes Yes Yes Yes Yes No No Yes No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban England North West North White British White Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 6500 5000 500 500 0 0 500 900 0 500 400 1000 1000 0 15 0 0 9 54 3 5 0 0 2 4 0 10 0 0 4 50 0 15 0 0 6 54 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 1 50 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 0 0 0 6.66666651 6.66666651 0 0 0 0 0 0 0 0 0 0 16.666666 0 0 33.3333321 20 33.3333321 0 0 0 92.5925903 92.5925903 0 0 0 0 0 8300 2000 400 0 5900 0 81 11 64 75 1 1.33333337 0 0 0 74 52 70.6666641 70.2702713 0 6 4 14.413929 14.413929 2914 Yes No Yes No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 50% to 74% 50% to 74% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 31 to 40 31 to 40 31 to 40 None None None None 31 to 40 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 11 to 20 Have not spent anything Have not spent anything 11 to 20 31 to 40 51 to 100 41 to 50 41 to 50 None None None None None None 41 to 50 75% to 99% 41 to 50 75% to 99% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) No No Yes No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes Yes Yes Yes No No No Yes Yes Yes No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 22 4000 4000 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 5 40 6 0 0 0 0 0 0 0 0 0 5 40 0 0 0 0 5 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 60 0 0 0 100 100 0 0 0 0 0 8000 2000 0 0 2000 4000 51 0 45 45 0 0 0 0 0 45 43 95.5555573 95.5555573 0 6 2 10.0057049 10.0057049 2916 Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No Once a day (365) No Yes No No Yes No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes Yes No Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No Yes No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 2 2 No No Yes Phone Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 5 5 10 0 0 0 0 0 10 0 0 0 0 0 2 11.6103354 11.6103354 2919 Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 3 3 About once a week (52) About once a week (52) 31 to 40 11 to 20 11 to 20 31 to 40 11 to 20 25% to 49% None 21 to 30 50% to 74% 11 to 20 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 31 to 40 21 to 30 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 Have not spent anything 1 to 10 11 to 20 Have not spent anything 51 to 100 11 to 20 11 to 20 31 to 40 11 to 20 25% to 49% 1 to 10 1% to 24% 21 to 30 50% to 74% 11 to 20 100% 11 to 20 100% None 11 to 20 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Yes Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No Yes No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 3000 0 0 0 0 3000 3000 3000 0 1000 1000 0 3500 2000 1000 500 0 0 0 0 0 0 0 0 0 0 35 10 5 2 0 0 20 0 0 0 0 0 15 0 0 0 0 0 35 0 0 0 0 0 15 0 0 0 0 0 0 0 5 0 0 0 25 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 5 2 0 0 42.8571434 0 71.4285736 100 100 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7500 4500 0 1000 2000 0 52 20 15 35 15 42.8571434 15.625 25 71.4285736 20 20 100 100 0 17 0 3.06872106 3.06872106 53 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No Yes No 2 2 No Yes No Phone Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.0057049 10.0057049 2920 Yes Yes No No No Yes Yes No No No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes Yes Yes No No No No No No No Several times a day (730) No No No No No No No Yes No No No Yes Yes No Yes Yes Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything 51 to 100 51 to 100 51 to 100 None None None None None None 51 to 100 100% 51 to 100 100% None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) No No No No No No No No No No No No No No No No Yes No No No Yes Yes Yes Yes Yes Yes No No No No No No Yes No No No No No Not particularly confident (2) No No Yes No No No No No No No Yes No No No No No No Yes No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England North West North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 3700 3700 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3700 0 0 0 3700 0 60 0 60 60 0 0 0 0 0 60 60 100 100 0 0 2 10.0924006 10.0924006 2934 Yes No Yes No No No Yes No Yes No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes No Yes No No No No No No 2-4 days a week (156) Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England East Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Kids 13 1400 0 0 0 500 900 1000 1000 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 1 1 0 0 0 5 0 0 0 0 0 2 0 0 0 0 0 7 0 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2800 2000 500 300 0 0 9 5 2 7 7 100 0 0 0 0 0 100 0 0 2 0 3.18014598 3.18014598 54 Yes Yes Yes Yes Yes Yes Yes No No Yes Yes Yes No Yes Yes No No Yes No Yes No No No No No No No Yes No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) Most days (365) 1001+ 501 to 1000 1001+ 1001+ None None None None 201 to 500 1% to 24% 1% to 24% 501 to 1000 101 to 200 101 to 200 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a month (12) Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know Don't know Don't know 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) Every 2-3 weeks (30) 51 to 100 11 to 20 41 to 50 51 to 100 51 to 100 100% 1% to 24% None None 11 to 20 25% to 49% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 100+ Have not spent anything Have not spent anything 100+ Most days (365) Most days (365) Every 2-3 weeks (30) 51 to 100 11 to 20 41 to 50 51 to 100 None None None None 41 to 50 50% to 74% 50% to 74% 21 to 30 Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything 100+ Have not spent anything 100+ Have not spent anything 1001+ 1001+ 1001+ 1001+ 51 to 100 1% to 24% 1 to 10 1% to 24% None None 501 to 1000 1% to 24% 501 to 1000 1% to 24% 101 to 200 None Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes No No No No No No No No No No No Yes Yes Yes Yes No No No No Yes No No No No No No No No No Yes Yes Yes No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No No Yes Yes Yes No Yes No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands White British White Yes Yes Yes No No Yes No Yes No Yes No Yes Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 0 15000 0 0 15000 0 0 0 6000 7 13 70 70 0 1000 2 5 20 20 0 5000 5 8 50 50 0 6000 7 13 70 70 0 0 0 0 70 0 0 0 0 0 5 0 0 0 0 0 0 0 0 20 500 7 13 0 50 0 1000 150 150 1 1 10 30 0 0 0 0 0 0 0 0 0 0 8.33333302 8.33333302 0 0 0 100 100 0 0 0 100 100 100 7.14285707 0 28.5714283 0 100 0 0 0 71.4285736 71.4285736 0 0 0 0 0 35000 0 15000 0 20000 0 6160 1047 5113 6160 70 1.13636363 7.14285707 0 0 6090 570 10.3896103 9.35960579 192 0 2 14.0663652 14.0663652 2969 Yes Yes Yes No No Yes No No Yes Yes No No No Yes Yes Yes No No No No Yes No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Neither agree nor disagree (0) Don't know Slightly disagree (-2) No No No No No No No No No No No No No No No No No No No Yes Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 14.0663652 14.0663652 2992 Yes No Yes No No Yes Yes No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 25% to 49% Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ No Yes No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 2499 2499 0 2499 2499 0 759 759 0 0 0 0 0 0 0 0 0 499 499 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 6256 5497 0 0 759 0 3 0 0 0 0 0 33.3333321 0 0 0 0 0 0 0 3 5 11.4285479 11.4285479 2996 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) Yes No Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes No Yes No No No No No No Yes No No No No No Yes No No No No Yes No Yes No Yes No Yes Yes No No No No Yes No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 Have not spent anything 31 to 40 Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% None None 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 11 to 20 41 to 50 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 1 to 10 1% to 24% None None None None None 50% to 74% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes Yes No Yes Yes Yes Yes No No No No No No Yes No No No Yes No No No Yes No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Rural England North East North White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 22 0 0 0 0 0 0 4000 0 4000 0 0 0 500 0 0 0 500 0 0 0 0 0 0 2500 2000 500 2 2 0 3 0 3 2 2 0 3 0 1 0 0 0 0 0 0 2 2 0 3 0 1 2 2 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 100 0 0 0 100 100 50 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 7000 2000 5000 0 0 0 10 8 0 8 5 62.5 14.2857141 0 0 3 0 62.5 0 0 2 2 11.7109346 11.7109346 3000 Yes No No No No Yes No No No Yes Yes No No Yes No No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes Yes Yes No No No No No Yes Yes No No Yes Yes Yes No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) About once a month (12) 101 to 200 51 to 100 41 to 50 101 to 200 None None None None None 11 to 20 1% to 24% 1% to 24% 1001+ 21 to 30 21 to 30 11 to 20 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 11 to 20 11 to 20 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 11 to 20 25% to 49% 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 11 to 20 51 to 100 201 to 500 101 to 200 41 to 50 101 to 200 None None 1 to 10 1% to 24% None None 21 to 30 1% to 24% 21 to 30 1% to 24% 21 to 30 41 to 50 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Yes Yes Yes Yes Yes No No Yes Yes No No No No Yes Yes Yes Yes No No No Yes No No No No Yes Yes No No No No Yes Yes Yes No No Yes No No No No Yes Yes Yes Yes No No Yes Yes No Yes Yes No Yes Yes No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No Yes No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 4 4 No No Yes Phone Urban Scotland Scotland North White British White Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 21 9000 7000 0 2000 0 0 0 0 0 0 0 0 5000 2000 0 3000 0 0 0 0 0 0 0 5000 5000 0 170 0 5 20 0 10 100 0 5 0 0 0 50 0 0 0 0 0 150 0 5 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 20 0 5 0 0 0 11000 30 30 0 0 0 0 0 20 0 0 20 0 10 0 0 0 13.333333 13.333333 0 0 0 0 0 0 0 0 100 100 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19000 10000 0 0 2000 7000 205 105 50 155 0 0 10 0 0 155 25 16.1290321 16.1290321 30 50 4 11.6103354 11.6103354 3004 Yes No No Yes Yes No No No Yes No Yes Yes No No Yes No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes Yes Yes Yes Yes No 31 to 40 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 Most days (365) Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 100% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 100% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 21 to 30 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 31 to 40 1 to 10 11 to 20 11 to 20 Most days (365) Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 100% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 100+ 31 to 40 31 to 40 1 to 10 20 to 30 1 to 10 21 to 30 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 11 to 20 75% to 99% 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% 1 to 10 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No Yes No Yes Yes No Yes No No No No No Yes No No Yes Yes No No Yes Yes Yes Yes No No No No Yes Yes No Yes Yes No No Yes Yes No Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England London South White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 3500 500 500 500 500 1500 1000 500 500 1000 500 500 3000 500 500 500 500 500 500 3700 1000 1500 1200 1000 500 500 6 3 3 3 3 3 2 1 1 1 1 1 2 1 1 1 1 1 4 2 2 2 2 2 2 1 1 1 1 1 4 1 2 1 1 2 2 1 1 1 1 1 1 2 1 1 1 1 1 2 2 2 1 1 1 1 1 2 1 1 1 1 1 50 100 50 100 100 50 50 50 100 100 50 100 50 100 100 50 50 50 50 100 100 50 50 50 100 100 50 100 50 100 100 11900 4000 3700 1000 2200 1000 21 7 7 14 7 50 78.5714264 7 50 7 7 100 100 7 7 2 15.476119 15.476119 3008 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No 5-6 days a week (286) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Don't know No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 5+ 5+ Yes No No Phone Rented from private landlord Urban England London South Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 17.722784 17.722784 3061 Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No No No Yes No No No No Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 3 4 No Yes No Phone Rented from local authority Urban England London South Any other white White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 11.5749807 11.5749807 3116 No No No No No Yes No No Yes No No No No Yes No No No Yes No No No No Yes No No No No No No Yes Yes Yes Yes No No No No No No No No No Several times a day (730) Yes Yes Yes No Yes Yes Yes No No No No Yes Yes No Yes Yes Yes Yes No No No No No No Yes No No No Yes No No No No No Yes No No Yes No No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No Yes No No No No No No No No No No No No Yes Yes Yes No Yes Yes No No No No No No No Yes No Yes Yes No No No 3 3 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a month (12) None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 25% to 49% 25% to 49% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything 11 to 20 20 to 30 11 to 20 1 to 10 11 to 20 11 to 20 None None None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 None Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes Yes No Yes Yes No No Yes No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes No No No No No No No Yes No Yes No No No Yes No No No Yes No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No Yes Yes No Yes No No Yes No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South East South African Minority Ethnic Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes No Yes No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Kids 15 2500 2500 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 5 0 3 7 3 0 0 0 0 3 0 0 5 0 3 4 3 0 5 0 3 7 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 60 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33.3333321 33.3333321 0 0 0 0 0 4000 0 0 0 1500 2500 18 3 15 18 0 0 0 0 0 18 4 22.2222214 22.2222214 1 0 0 2.70298147 2.70298147 55 Yes No Yes No No No No No Yes No No Yes No Yes No No No Yes Yes No Yes No No No No No No No No No Yes No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Don't know Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.9604094 2.9604094 56 Yes No Yes No No No No No Yes No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No Once a day (365) Yes No No No Yes No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 11 to 20 50% to 74% 11 to 20 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 1 to 10 100% 11 to 20 50% to 74% None None None 100% None 21 to 30 Strongly disagree (-4) Don't know Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South East South White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Kids 12 1500 0 0 1500 0 0 2500 2500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 1 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 10 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 1 0 0 0 0 0 50 0 0 0 0 0 0 0 0 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 26 0 5 5 5 100 57.6923065 0 0 0 0 100 0 0 21 0 2.60827494 2.60827494 57 Yes Yes Yes Yes No Yes No No Yes Yes Yes Yes No Yes No No No No No No Yes No No No No No No No No No Yes No No No No Yes No No No No No No 2-4 days a week (156) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes No No No Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) Every 2-3 weeks (30) 21 to 30 11 to 20 11 to 20 21 to 30 None None None None None None None Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) 51 to 100 41 to 50 11 to 20 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 75% to 99% None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know Less often (6) 21 to 30 11 to 20 1 to 10 21 to 30 None None None None 21 to 30 100% 100% 21 to 30 1 to 10 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 1% to 24% None None None Very likely (4) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 11 to 20 11 to 20 Have not spent anything Have not spent anything Less often (6) About once a week (52) 11 to 20 1 to 10 11 to 20 11 to 20 1 to 10 1% to 24% None None None 11 to 20 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 41 to 50 20 to 30 Have not spent anything 1 to 10 Have not spent anything 51 to 100 31 to 40 41 to 50 51 to 100 1 to 10 1% to 24% 1 to 10 25% to 49% None None 41 to 50 50% to 74% 41 to 50 50% to 74% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) No Yes No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No Yes No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time Any Yes No Yes No No Yes No 3 4 No Yes No Phone Rented from private landlord Urban England London South White British White Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAPI Adults 24 99 0 0 0 99 0 5750 4500 1250 0 0 0 2600 0 0 0 1600 0 1000 1300 1300 0 0 0 0 0 27 7 25 6 17 5 11 0 20 0 1 0 16 4 5 5 15 5 27 4 25 5 16 5 0 1 0 0 2 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 3 25 0 14 5 0 0 0 0 0 0 0 0 0 3 0 1 1 0 0 0 0 0 0 25 75 0 100 100 0 0 0 100 100 0 0 0 20 0 0 12.5 0 0 100 100 0 0 0 100 100 8449 4500 2949 0 1000 0 87 32 50 82 3 3.65853667 37.5 0 0 79 47 60.9756088 59.4936714 0 5 4 13.8634472 13.8634472 3129 No Yes No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly disagree (-4) Don't know Strongly agree (4) Don't know Strongly agree (4) Don't know Don't know Don't know No No No No No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Being bought on mortgage Rural England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 11.9474201 11.9474201 3132 Yes No Yes No No Yes No No Yes Yes No No No Yes No No No Yes Yes No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes Yes No No No Yes Yes No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes No No No Yes Yes No No No No Yes Yes No No No No No No No No No Yes No Yes Yes No No Yes No Yes No Yes Yes No No Yes No Yes No Yes Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) About once a week (52) 31 to 40 11 to 20 11 to 20 31 to 40 None None None None 31 to 40 100% 100% 51 to 100 41 to 50 41 to 50 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 11 to 20 21 to 30 41 to 50 None None None None None None 41 to 50 100% 41 to 50 100% 41 to 50 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Yes Yes No Yes Yes No Yes Yes No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South East South White & Black African Minority Ethnic Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Kids 12 0 0 0 0 0 0 6000 6000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 40 3 0 0 5 2 20 0 0 0 0 0 20 0 0 0 5 0 40 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 0 5 0 100 50 50 0 0 0 0 0 0 3 0 0 0 2 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 9000 9000 0 0 0 0 50 20 25 45 0 0 0 0 0 45 45 100 100 50 5 0 2.70298147 2.70298147 58 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No Yes No No No No No No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None None Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No No Yes No 2 3 No Yes No No phone Rented from private landlord Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 24 3000 0 0 3000 0 0 0 0 0 0 0 0 6000 0 6000 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 11 0 0 0 0 0 0 0 0 0 0 0 0 0 11 3 12.0645142 12.0645142 3149 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 3 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 Have not spent anything Have not spent anything 1 to 10 11 to 20 11 to 20 None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Neither agree nor disagree (0) No No No No No No No No No No No Yes No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No Yes No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No No No Yes Yes No 3 4 Yes No No Phone Rented from local authority Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 20 2700 1500 0 1200 0 0 2000 2000 0 0 0 0 900 900 0 0 0 0 0 0 0 0 0 0 0 0 10 4 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 4 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5600 3200 0 0 900 1500 16 0 0 0 0 0 0 0 0 0 0 0 0 0 16 4 10.7805424 10.7805424 3168 No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No Yes No No No No No No 2-4 days a week (156) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 50% to 74% Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 50% to 74% Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 2 2 No Yes No No phone Rented from private landlord Rural Scotland Scotland North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAPI Adults 24 0 0 0 0 0 0 2500 2500 0 0 0 0 500 0 500 0 0 0 0 0 0 0 0 300 300 0 0 5 0 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 5 0 1 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2800 2800 0 0 0 0 11 0 0 0 0 0 72.727272 0 0 0 0 0 0 0 11 2 12.8010254 12.8010254 3257 Yes No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No 2-3 times a month (30) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 11 to 20 Have not spent anything 1 to 10 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 1 to 10 Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Yes Yes No Yes Yes Yes No Yes No No No No No No No No No No No No No No Yes Yes No No Yes No No No No No Yes No No No No No Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No Yes No 2 4 No Yes No Phone Rented from local authority Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 20 0 0 0 0 0 0 1 1 0 0 0 0 1001 1 1000 0 0 0 0 1500 0 1000 500 250 250 0 0 1 0 2 8 6 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 1 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2252 1251 500 0 501 0 17 0 8 8 0 0 0 0 0 8 8 100 100 0 9 4 9.29059505 9.29059505 3297 Yes No Yes No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No Yes No No Yes No No No No No No No Yes No No Yes No No No No No No No Yes Yes Yes Yes Yes No No No No No No Yes No No Yes No No No No No No No Yes Yes Yes No No No Yes No Yes Yes Yes No No No Yes No Yes No No No No No Yes No 3 1 to 10 Have not spent anything 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) Less often (6) 31 to 40 1 to 10 1 to 10 1 to 10 None None 25% to 49% None None 1 to 10 1% to 24% 1% to 24% 51 to 100 1 to 10 1 to 10 21 to 30 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) 41 to 50 41 to 50 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 50% to 74% 50% to 74% 1 to 10 41 to 50 41 to 50 Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) About once a month (12) 11 to 20 1 to 10 1 to 10 11 to 20 None None None 1 to 10 1% to 24% 1 to 10 50% to 74% 50% to 74% 1 to 10 1 to 10 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 1 to 10 100% 100% 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 1 to 10 Have not spent anything 11 to 20 1 to 10 51 to 100 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 1% to 24% 11 to 20 25% to 49% 11 to 20 50% to 74% 11 to 20 31 to 40 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No No Yes No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No Yes No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban Wales Wales Midlands White British White Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 12 3000 0 1000 1500 500 0 4700 4500 200 5000 5000 0 2100 1500 0 600 0 0 0 0 0 0 0 0 0 0 38 5 14 3 0 0 4 0 6 0 0 0 4 3 6 1 0 0 8 3 12 1 0 0 0 0 0 1 0 0 10 0 0 0 0 0 0 0 1 0 0 0 1 1 2 8 0 0 0 100 10 10 0 1 0 0 0 30 2 2 2 0 0 0 33.3333321 0 12.5 12.5 0 0 0 66.6666641 66.6666641 0 0 8.33333302 66.6666641 66.6666641 100 0 0 100 0 100 0 0 0 0 0 0 0 0 0 0 14800 11600 700 0 1500 1000 60 10 14 24 1 4.16666651 27.0270271 1 4.16666651 23 11 50 47.826088 11 36 0 3.06872106 3.06872106 59 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Yes Yes No No No No No No Yes No No No No No No No No No No No Not at all confident (1) No No No No No No Yes No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Owned outright by household Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 3000 0 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 12.9119415 12.9119415 3298 Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No Yes No No Yes No No No No No No 2-4 days a week (156) Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Strongly disagree (-4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Yes Yes Yes No No No No Yes No No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 No No Yes No phone Rented from private landlord Urban Northern Ireland Northern Ireland North White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAPI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 3000 0 2000 0 0 0 1000 0 0 0 0 2000 2000 0 0 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 2000 0 0 1000 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 8.49795055 8.49795055 3373 Yes No Yes No No Yes No No Yes Yes No No No Yes No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None None None 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything 51 to 100 51 to 100 51 to 100 1 to 10 1% to 24% 1 to 10 100% None None 41 to 50 100% 41 to 50 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No Yes Yes Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 2649 2150 499 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 50 0 0 0 0 0 0 0 0 0 0 2 50 0 0 0 0 2 50 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 0 0 0 100 100 0 0 0 0 0 2150 0 0 0 2150 0 52 0 52 52 2 3.84615374 100 0 0 50 50 100 100 0 0 0 2.60827494 2.60827494 60 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No Yes No Yes No No No No No No Once a day (365) Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 1 to 10 1 to 10 Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 31 to 40 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South West South White British White Yes No Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No Yes Yes No CAWI Kids 13 0 0 0 0 0 0 4000 4000 0 0 0 0 800 800 0 0 0 0 0 0 0 0 0 0 0 0 6 1 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4800 4000 0 0 800 0 7 6 0 6 0 0 0 0 0 6 0 0 0 1 1 0 2.70298147 2.70298147 61 No No No No No Yes No No No No No Yes No Yes Yes No No No No No No No Yes No No No No No No Yes No No No No No Yes No No No No No No Once a week (52) No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) No Yes No No No No No No Yes No No No No Yes Yes No No No No No No No No No No No Yes No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 2 3 No Yes No No phone Rented from private landlord Urban England South East South White British White No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAPI Adults 23 0 0 0 0 0 0 69 0 69 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 69 0 69 0 0 0 4 1 0 1 1 100 0 0 0 0 0 100 0 0 3 3 13.8634472 13.8634472 3386 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 20 to 30 11 to 20 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Slightly disagree (-2) Slightly agree (2) Don't know Strongly agree (4) Don't know Slightly agree (2) Slightly agree (2) Don't know No No No No No No No No No Yes Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No Yes No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes Yes 2 4 No Yes No Phone Rented from private landlord Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 2800 2000 800 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2800 800 0 0 2000 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 11.9474201 11.9474201 3413 Yes No No No No Yes No No Yes Yes Yes No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No 5-6 days a week (286) Yes Yes No No Yes No No Yes No No No Yes Yes No No Yes No No Yes No No No No No No No No No No No No Yes No Yes Yes No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 75% to 99% None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 About once a week (52) Most days (365) 31 to 40 11 to 20 11 to 20 31 to 40 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 41 to 50 21 to 30 11 to 20 41 to 50 None None None None None None None None None None None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) No Yes Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working In Education None No Yes No No No No No 3 3 Yes No No Phone Rented from private landlord Urban England London South African Minority Ethnic Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No CAPI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 1500 5 0 0 4 0 36 5 0 0 4 0 16 0 0 0 0 0 20 5 0 0 4 0 36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 1500 0 0 0 45 25 20 45 0 0 0 0 0 45 0 0 0 0 0 3 17.0632629 17.0632629 3458 Yes No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes Yes No No Yes No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 None None Neither agree nor disagree (0) Don't know Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Don't know No Yes Yes No Yes Yes No Yes Yes No No No Yes No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No Yes No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No No phone Rented from private landlord Rural England South West South White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAPI Adults 21 2000 0 0 2000 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 3000 3000 0 10 0 0 2 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 2 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6000 5000 0 0 1000 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 16 2 11.9474201 11.9474201 3493 Yes No No No No Yes No No No No No No No Yes No No No No No No No No Yes No No No No No No Yes No No Yes No No No No No No No No No 5-6 days a week (286) No Yes No No Yes Yes No No No No No Yes No No No Yes No No No No No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No Yes No No Yes No No No No Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 75% to 99% 75% to 99% Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% 100% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 1% to 24% 25% to 49% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% 1 to 10 100% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 50% to 74% None None Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No No Yes 1 2 No Yes No No phone Rented from private landlord Rural England South West South White British White No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAPI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 11 4 0 0 0 0 4 4 0 9 0 0 7 0 0 9 0 0 11 4 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 3 0 0 1 8 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 88.8888855 88.8888855 0 0 0 0 0 0 0 0 0 0 18.181818 100 27.272728 9.090909 22.2222214 36.363636 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24 8 16 24 2 8.33333302 100 3 12.5 22 10 50 45.4545441 0 0 2 11.9474201 11.9474201 3494 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 4 4 No Yes No Phone Rented from local authority Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12.9535713 12.9535713 3534 Yes No No No No No No No Yes No No No No Yes No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) No Yes No No No No Yes Yes Yes No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 14 0 0 0 0 0 0 1500 1500 0 0 0 0 1100 600 0 500 0 0 0 0 0 0 0 0 0 0 0 3 0 1 16 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2600 2000 0 0 600 0 20 0 16 16 0 0 0 0 0 16 16 100 100 0 4 0 2.9604094 2.9604094 62 No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No 2-4 days a week (156) Yes No No Yes Yes Yes No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No Yes Yes No No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 21 to 30 Less often (6) 1 to 10 1 to 10 1 to 10 None None 100% None None None None None None None Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% Have not spent anything Have not spent anything Have not spent anything None 41 to 50 1 to 10 Have not spent anything Have not spent anything 20 to 30 1 to 10 11 to 20 11 to 20 11 to 20 None None 1 to 10 100% None None 1 to 10 25% to 49% 1 to 10 25% to 49% None 1 to 10 Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) No Yes No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No Yes Yes Yes No No Yes No No No Yes No No No No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No Yes No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No No phone Rented from local authority Urban England East Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAPI Adults 22 1000 0 1000 0 0 0 0 0 0 0 0 0 4000 0 1000 0 0 0 3000 1000 0 1000 0 0 0 0 0 0 0 7 10 0 0 0 0 0 0 0 0 0 0 2 10 0 0 0 0 2 10 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 50 50 0 0 0 0 0 5000 1000 0 0 3000 1000 17 0 12 12 0 0 100 0 0 12 5 41.6666679 41.6666679 0 5 1 12.6005955 12.6005955 3556 Yes No No No No Yes No No No No No No No Yes No No No No Yes No No No Yes No No No No No No Yes No No Yes No No No No No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No No phone Being bought on mortgage Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 16.1083775 16.1083775 3641 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No Yes No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None 11 to 20 100% 100% 1 to 10 Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 Have not spent anything 20 to 30 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Yes Yes No No No No No Yes No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South East South Indian Minority Ethnic Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 12 15 0 0 15 0 0 0 0 0 0 0 0 1500 0 0 1500 0 0 0 3000 0 3000 0 0 0 0 13 0 0 3 4 0 6 0 0 0 0 0 6 0 0 0 4 0 12 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 4 0 0 0 0 0 0 0 0 0 1 0 0 3 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4515 4515 0 0 0 0 20 6 10 16 0 0 0 0 0 16 16 100 100 0 4 0 2.60827494 2.60827494 63 No No No No No No No No No Yes No No No Yes No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Rented from local authority Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12.9119415 12.9119415 3686 Yes No No No No Yes Yes No Yes Yes No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No Yes No No Yes Yes Yes No No No No No Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a week (52) Don't know 11 to 20 1 to 10 11 to 20 11 to 20 11 to 20 75% to 99% None None None 1 to 10 100% 100% 11 to 20 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 Have not spent anything Have not spent anything Have not spent anything 1 to 10 41 to 50 11 to 20 1 to 10 11 to 20 11 to 20 11 to 20 75% to 99% None None None None 1 to 10 100% 1 to 10 100% 1 to 10 None Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Yes Yes Yes No No Yes Yes Yes No No No No No No No Yes Yes Yes No Yes Yes No Yes No No Yes No No Yes Yes No Yes No Yes Yes No Yes No Yes No Yes No No No No No No No Yes No Yes No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Rural England South West South White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Kids 14 5000 5000 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 1 0 0 3 0 0 0 0 0 12 0 0 1 0 0 15 0 0 1 0 0 14 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 20 2 2 0 0 0 0 0 0 0 0 0 0 0 93.3333359 0 0 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 6000 0 0 0 1000 5000 16 3 13 16 15 93.75 0 0 0 1 1 100 100 2 0 0 2.70298147 2.70298147 64 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes No No Phone Rented from local authority Urban England Yorkshire and The Humber North Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 0 500 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 500 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5 12.0645142 12.0645142 3745 No No No No No No No No No No No No Yes No No Yes No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Once a week (52) Yes No No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 2 3 No Yes No No phone Rented from private landlord Urban England Yorkshire and The Humber North White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAPI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 12.9119415 12.9119415 3748 No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Once a week (52) Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None None None None Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 21 to 30 None 21 to 30 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 21 to 30 21 to 30 None None None None None None None None None None None 31 to 40 Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No No No Yes Yes Yes 2 4 No Yes No No phone Rented from private landlord Rural England Yorkshire and The Humber North White British White Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No CAPI Adults 23 0 0 0 0 0 0 2000 2000 0 0 0 0 1500 0 1500 0 0 0 0 0 0 0 0 500 500 0 30 10 0 5 0 25 30 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 5 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 70 30 0 30 0 0 0 0 0 30 0 0 0 0 40 4 11.1274204 11.1274204 3771 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes 51 to 100 31 to 40 31 to 40 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 20 to 30 31 to 40 1 to 10 None None Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 2 2 Yes No No Phone Being bought on mortgage Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 21 5500 3500 0 2000 0 0 0 0 0 0 0 0 3000 0 0 0 0 0 3000 0 0 0 0 500 500 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9000 2500 0 0 3000 3500 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 10.3971138 10.3971138 3822 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything 21 to 30 None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 Have not spent anything Have not spent anything 31 to 40 Have not spent anything 31 to 40 None None Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No Yes No No No Yes 1 2 Yes No No No phone Rented from local authority Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 23 2000 0 0 2000 0 0 1200 1200 0 0 0 0 4000 0 0 0 0 0 4000 0 0 0 0 0 0 0 30 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7200 3200 0 0 4000 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 32 2 10.3971138 10.3971138 3832 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No Yes Yes 1 3 Yes No No No phone Rented from local authority Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 10.3971138 10.3971138 3838 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No Yes No No No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Rented from private landlord Rural England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10.3971138 10.3971138 3867 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Less often (6) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) No No No No No No Yes No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No Yes No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No No phone Being bought on mortgage Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.7805424 10.7805424 3892 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No Yes No No No No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 3 3 No Yes No Phone Rented from local authority Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 14.8491192 14.8491192 3894 No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No 5-6 days a week (286) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 2 5+ No Yes No Phone Rented from private landlord Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 1500 1000 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 1000 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 5 10.8591042 10.8591042 3929 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Rented from local authority Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11.7736025 11.7736025 3963 No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No No phone Rented from local authority Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11.1632957 11.1632957 4014 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No No Yes 1 2 Yes No No No phone Rented from local authority Urban Northern Ireland Northern Ireland North White Irish White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 7.94021845 7.94021845 4025 No No No No No Yes No No Yes No No Yes No No No Yes No No No No No No Yes No No No No No No No No Yes No No No Yes No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% None 1 to 10 Don't know Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Don't know Strongly disagree (-4) No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working In Education Any Yes No Yes No No No Yes 2 3 No Yes No No phone Rented from private landlord Urban Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAPI Adults 21 0 0 0 0 0 0 10000 10000 0 0 0 0 2600 1000 600 0 0 0 1000 700 100 600 0 0 0 0 0 4 0 1 3 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 0 1 2 0 0 0 0 0 0 100 0 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 12600 10600 0 0 2000 0 8 0 2 2 1 50 0 1 50 1 1 100 100 0 6 3 9.86077976 9.86077976 4028 Yes No Yes Yes Yes Yes No No Yes Yes No Yes No Yes No No No Yes No No No No Yes No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) No No Yes Yes No No No Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes Yes No No No Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 31 to 40 31 to 40 Have not spent anything Less often (6) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 25% to 49% 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 11 to 20 1 to 10 1 to 10 About once a week (52) About once a week (52) 21 to 30 11 to 20 11 to 20 21 to 30 1 to 10 25% to 49% None None None 11 to 20 100% 100% 1 to 10 Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) 51 to 100 41 to 50 11 to 20 Have not spent anything Have not spent anything Have not spent anything 101 to 200 21 to 30 101 to 200 101 to 200 1 to 10 1% to 24% None None None None 101 to 200 100% 101 to 200 100% None 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Don't know Don't know Don't know Strongly disagree (-4) Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No No No No No No No Yes Yes No No Yes Yes Yes Yes Yes Yes Yes No Yes No No No Yes No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South East South White British White No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 12 1000 0 0 0 1000 0 4000 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1300 500 800 100 6 11 8 25 26 0 1 10 0 0 12 100 3 1 8 25 12 100 4 11 8 25 24 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 3 100 4 11 8 25 18 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 100 100 0 0 0 100 100 0 0 0 100 100 0 0 0 37.5 100 100 0 0 0 100 100 25 0 0 100 100 6300 4500 1800 0 0 0 176 23 149 172 6 3.48837209 0 0 0 166 166 100 100 0 4 0 2.60827494 2.60827494 65 No No No No No Yes No No No Yes Yes Yes No Yes No No No No No No No No No No No No Yes No No No Yes No No No No Yes No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No Yes Yes No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No 51 to 100 31 to 40 31 to 40 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 Have not spent anything Have not spent anything Have not spent anything 31 to 40 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Don't know Slightly agree (2) Strongly agree (4) Don't know Neither agree nor disagree (0) Don't know Don't know No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 2 2 No No Yes No phone Rented from private landlord Urban Northern Ireland Northern Ireland North White Irish White No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 20 5800 3800 0 2000 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 8800 5000 0 0 0 3800 5 0 2 2 0 0 0 0 0 2 2 100 100 0 3 2 9.86077976 9.86077976 4031 No Yes No No No Yes No No No No No No No Yes No No No No No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Once a week (52) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Rented from private landlord Rural Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10.8591042 10.8591042 4039 No No No No No Yes No No No Yes No No No Yes No No No No No No No No Yes No No No No No No Yes No No No No No Yes No No No No No No 2-4 days a week (156) No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No Yes No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 41 to 50 41 to 50 None None None 1 to 10 1% to 24% 41 to 50 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Less often (6) 11 to 20 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 51 to 100 51 to 100 51 to 100 None None None None 1 to 10 1% to 24% 51 to 100 100% 51 to 100 100% None 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 2 3 No Yes No Phone Rented from private landlord Urban England North West North Caribbean Minority Ethnic No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAPI Adults 23 3000 0 0 3000 0 0 2000 2000 0 0 0 0 4000 0 2000 0 0 0 2000 0 0 0 0 1000 1000 0 55 3 0 11 0 5 0 0 0 0 0 0 50 0 0 5 0 0 50 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 50 0 0 5 0 0 0 0 0 0 0 0 0 0 5 3 0 6 0 5 0 0 20 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 8000 6000 0 0 2000 0 74 0 55 55 0 0 0 10 18.181818 55 55 100 100 0 19 3 12.9119415 12.9119415 4059 No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Rented from local authority Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 350 350 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 350 0 0 0 350 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 9.21360397 9.21360397 4119 No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No Yes No No No No No No 2-4 days a week (156) No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Being bought on mortgage Urban Wales Wales Midlands White British White No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAPI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 12.6005955 12.6005955 4131 No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 50% to 74% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything Have not spent anything 20 to 30 Have not spent anything 1 to 10 1 to 10 1% to 24% Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 1 1 No No Yes No phone Rented from private landlord Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 22 0 0 0 0 0 0 5000 5000 0 1500 1500 0 3000 0 0 0 0 0 3000 0 0 0 0 4000 4000 0 0 2 2 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 3 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13500 10500 0 0 3000 0 7 0 0 0 0 0 14.2857141 0 0 0 0 0 0 0 7 1 11.9608774 11.9608774 4161 Yes No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Don't know No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Strongly disagree (-4) Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Neither agree nor disagree (0) Yes No No Yes No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes No 2 3 Yes No No Phone Rented from local authority Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 9.21078777 9.21078777 4184 Yes Yes Yes No Yes No Yes No No No Yes Yes No Yes Yes No No Yes No No Yes No No No No No No No No Yes Yes No No No No Yes Yes No No No No No Several times a day (730) Yes No No Yes Yes No No No No No No Yes No Yes No Yes Yes No No No No No Yes Yes No No Yes No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes No No Yes No No No No Yes Yes No No No No Yes Yes No No No Yes No No 3 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 About once a month (12) About once a week (52) Every 2-3 weeks (30) 31 to 40 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% 100% 1 to 10 1% to 24% 1 to 10 25% to 49% 50% to 74% 11 to 20 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 1 to 10 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 50% to 74% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 41 to 50 11 to 20 1 to 10 1 to 10 1 to 10 11 to 20 41 to 50 1 to 10 21 to 30 31 to 40 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 1% to 24% 11 to 20 25% to 49% 11 to 20 50% to 74% 1 to 10 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No Yes Yes No No No No No No No No No No Yes Yes No Yes No Yes No No Yes No No No Yes No No No Yes Yes No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No Yes Yes No No No Yes Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Yes No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England West Midlands Midlands Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No Yes No No Yes No Yes Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 13 2899 1700 0 500 0 897 400 100 300 200 200 0 1000 1000 0 0 0 0 0 250 250 0 0 799 799 0 31 5 2 0 3 1 10 0 0 0 0 0 20 2 0 0 0 0 30 2 0 0 0 0 5 1 0 0 0 0 6 0 1 0 0 0 1 0 0 0 0 0 0 10 1 0 0 0 0 20 5 5 0 0 0 0 0 1 3 2 0 3 1 16.666666 100 3.33333325 40 50 50 0 0 100 100 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4898 1599 300 299 1000 1700 42 10 22 32 6 18.75 43.75 1 3.125 26 11 53.125 42.3076935 5 10 0 3.06872106 3.06872106 66 No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No Yes No No Yes No 1 3 No Yes No No phone Rented from private landlord Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 3 10.3971138 10.3971138 4231 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South West South Refused No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 0 0 0 0 5 9 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4000 4000 0 0 0 0 14 0 5 5 0 0 0 0 0 5 5 100 100 0 9 0 2.70298147 2.70298147 67 No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 11 to 20 None 11 to 20 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 None None Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No No phone Rented from local authority Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAPI Adults 23 3000 0 0 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 4000 0 10 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 7000 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 25 2 10.1464081 10.1464081 4436 Yes Yes Yes No No Yes No No No Yes Yes No No Yes Yes No No Yes No No No No No No No No No Yes No Yes No No Yes No Yes No No No No No No No Several times a day (730) Yes No No No Yes Yes No Yes No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes Yes No Yes No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 101 to 200 31 to 40 31 to 40 None None 1% to 24% 1 to 10 1% to 24% None None None 51 to 100 Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 50% to 74% 1 to 10 51 to 100 31 to 40 31 to 40 Have not spent anything 11 to 20 Have not spent anything 1 to 10 Have not spent anything Every 2-3 weeks (30) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% 75% to 99% 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 1% to 24% 25% to 49% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 31 to 40 11 to 20 11 to 20 31 to 40 None None None None 11 to 20 50% to 74% 50% to 74% 11 to 20 11 to 20 Have not spent anything Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 25% to 49% 25% to 49% 1 to 10 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 Have not spent anything 1 to 10 31 to 40 Have not spent anything 101 to 200 51 to 100 21 to 30 51 to 100 1 to 10 1% to 24% 11 to 20 1% to 24% 1 to 10 1% to 24% 21 to 30 1% to 24% 21 to 30 25% to 49% None 51 to 100 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No Yes No No No Yes No Yes No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No Yes Yes No Yes No No No No Slightly confident (3) Yes No No No No No No No No No No No No Yes No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban England East of England Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes No No No No Yes No Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 24 2000 0 0 2000 0 0 0 0 0 4000 4000 0 7000 4000 0 2000 0 1000 0 0 0 0 0 1200 1200 0 130 0 2 15 40 12 40 0 0 4 20 8 0 0 0 8 20 0 40 0 0 12 40 8 0 0 0 2 0 0 10 0 1 4 0 0 5 0 0 5 0 0 4 0 0 0 2 20 2 0 0 0 0 0 0 0 0 90 0 2 3 0 4 0 11.1111107 12.5 0 0 0 0 0 0 0 0 50 0 0 0 16.666666 80 41.6666679 33.3333321 20 33.3333321 0 0 0 50 50 0 0 0 25 25 14200 9200 0 1000 4000 0 199 72 28 100 2 2 14.8514853 10 10 98 24 26 24.4897957 0 99 4 9.84904194 9.84904194 4568 Yes No No No No Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 3 11 to 20 Have not spent anything 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 11 to 20 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None None None 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No Yes No No No No No No No No No No No No No No No No No Yes No No No Yes Yes No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Rural England South West South White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Kids 14 2200 0 1200 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2200 0 1000 0 0 1200 12 12 0 12 12 100 0 0 0 0 0 100 0 0 0 0 2.70298147 2.70298147 68 Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) No No No No Yes No No Yes No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes Yes No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 41 to 50 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 1 to 10 Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Very confident (4) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Part time Any Yes No No Yes No No Yes 4 4 Yes No No Phone Rural England North West North White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 21 4099 0 0 4099 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 1700 1000 700 3 0 0 0 0 7 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 7799 5099 700 0 2000 0 10 2 0 2 2 100 0 0 0 0 0 100 0 0 8 4 14.9710493 14.9710493 4581 Yes No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) No Yes Yes Yes Yes Yes No No No No No Yes Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No Yes Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 11 to 20 11 to 20 31 to 40 None None None None None None 31 to 40 75% to 99% 31 to 40 75% to 99% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) No No Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England West Midlands Midlands White Irish White No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Kids 15 0 0 0 0 0 0 4000 4000 0 4000 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2 4 3 20 0 0 0 2 3 10 0 10 0 0 0 10 0 10 0 2 3 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 3 20 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 8000 8000 0 0 0 0 39 15 20 35 0 0 0 0 0 35 33 94.2857132 94.2857132 0 4 0 3.06872106 3.06872106 69 Yes No Yes No No Yes Yes No No No No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 41 to 50 31 to 40 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Don't know Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Don't know Yes No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time None No Yes No No No No No 4 4 No Yes No Phone Rural England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 3000 3000 0 0 0 0 600 600 0 0 0 0 0 0 0 0 0 500 500 0 0 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4100 3500 0 0 600 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 16.0742931 16.0742931 4583 Yes No No No No No No No Yes No No No No Yes No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 20 to 30 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 None None Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Urban England East of England Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Adults 20 1500 500 1000 0 0 0 0 0 0 0 0 0 600 0 0 600 0 0 0 0 0 0 0 2000 2000 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4100 2600 0 0 0 1500 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 11.4285479 11.4285479 4584 Yes Yes Yes Yes No Yes No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Yes Yes Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England North West North White & Black Caribbean Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 1350 1350 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1350 0 0 0 1350 0 1 0 1 1 0 0 0 0 0 1 1 100 100 0 0 2 14.413929 14.413929 4585 Yes Yes Yes No No Yes No No No Yes Yes Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Yes No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 Less often (6) 41 to 50 31 to 40 31 to 40 1 to 10 1% to 24% 50% to 74% 1 to 10 1% to 24% 1 to 10 1% to 24% 1% to 24% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 31 to 40 1 to 10 1 to 10 1 to 10 Have not spent anything 51 to 100 31 to 40 1 to 10 41 to 50 1 to 10 1% to 24% 1 to 10 50% to 74% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Wales Wales Midlands Chinese Minority Ethnic Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 22 2800 0 0 1000 0 1800 222 222 0 202 202 0 808 202 202 202 0 0 202 606 202 202 202 1500 1500 0 41 2 2 2 4 1 40 0 0 0 0 0 0 0 0 0 2 0 40 0 0 0 2 0 2 0 0 0 2 0 2 2 2 2 2 0 2 0 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 2 2 2 1 5 66.6666641 5 5.26315784 10 0 100 0 0 0 0 100 0 0 0 0 100 0 0 0 0 100 50 100 0 100 0 0 0 0 0 4736 3328 202 600 606 0 52 40 2 42 4 9.52380943 71.4285736 4 9.52380943 38 2 14.2857141 5.26315784 0 10 2 14.0663652 14.0663652 4615 Yes No No Yes No Yes Yes No Yes No No Yes No Yes No No No No No No Yes No No No No No No No No No Yes No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No Yes No No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No Yes No No No No Yes No No No No Yes No Yes No No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No Yes No No No No Yes No No No No Yes No No No No No No No Yes No Yes No No No No No Yes No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 About once a month (12) 2-3 times a week (130) 31 to 40 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% 25% to 49% None None 11 to 20 100% 100% 11 to 20 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 51 to 100 51 to 100 11 to 20 Less often (6) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 21 to 30 11 to 20 1 to 10 21 to 30 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 11 to 20 1 to 10 11 to 20 Have not spent anything 51 to 100 1 to 10 31 to 40 31 to 40 1 to 10 1% to 24% 1 to 10 25% to 49% None None 31 to 40 100% 31 to 40 100% None 21 to 30 Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) No Yes No No No Yes No Yes No No No No No No Yes No Yes No No Yes No No No No No No No No Yes Yes No Yes Yes Yes No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England East Midlands Midlands Any other white White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 12 2600 0 0 1500 200 900 7500 6000 1500 0 0 0 4700 1200 1000 2500 0 0 0 0 0 0 0 2500 2500 0 37 9 0 6 5 5 5 2 0 0 0 0 20 4 0 2 5 0 25 6 0 2 5 0 5 2 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 20 4 0 2 5 0 0 0 0 0 0 0 0 0 12 3 0 4 0 5 20 47.0588226 0 100 100 33.3333321 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 15700 12500 1700 300 1200 0 62 7 31 38 7 18.4210529 25.8064518 0 0 31 31 100 100 0 24 0 3.06872106 3.06872106 70 Yes Yes No No No Yes No No Yes No No No No Yes Yes Yes No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Several times a day (730) No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No Yes No No Yes Yes No No No Yes No No No No No No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% 1 to 10 11 to 20 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Don't know Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes No Yes No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban Wales Wales Midlands Chinese Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 24 800 0 0 800 0 0 4200 4200 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 12 1 1 5 0 0 0 0 1 0 0 0 0 0 0 5 0 0 0 0 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 5 0 0 0 0 0 0 1 0 0 0 12 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 60 100 100 0 0 0 0 0 0 0 0 0 0 6000 5000 0 0 1000 0 19 1 5 6 0 0 0 0 0 6 6 100 100 1 13 2 14.0663652 14.0663652 4623 No Yes No Yes No Yes No No No Yes No No No No No No No Yes No Yes No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes No No Yes No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No Yes No No Yes No No No No Yes No Yes No No No No No 51 to 100 31 to 40 3 1 to 10 Have not spent anything Have not spent anything 11 to 20 11 to 20 Most days (365) Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 50% to 74% 1 to 10 25% to 49% 1 to 10 75% to 99% 75% to 99% 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 1 to 10 1 to 10 Have not spent anything 1 to 10 50% to 74% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 75% to 99% 1 to 10 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 75% to 99% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 75% to 99% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 75% to 99% 1 to 10 51 to 100 20 to 30 Have not spent anything 1 to 10 1 to 10 31 to 40 31 to 40 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 21 to 30 50% to 74% 1 to 10 25% to 49% 1 to 10 75% to 99% 1 to 10 75% to 99% 1 to 10 21 to 30 Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) No Yes No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England London South White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 13 5300 3000 500 0 0 1800 509 509 0 400 400 0 1200 300 300 200 0 0 400 800 400 400 0 500 500 0 13 6 4 4 4 5 6 0 0 0 0 0 7 0 0 0 0 0 13 0 0 0 0 0 7 0 0 0 0 0 5 4 3 3 3 4 6 0 0 0 0 0 0 5 0 0 0 0 0 6 4 4 0 0 0 0 0 0 6 4 4 4 5 53.8461533 71.4285736 46.1538467 83.3333359 92.3076935 0 66.6666641 0 0 0 0 75 0 0 0 0 75 0 0 0 0 0 75 0 0 0 0 80 0 0 0 6809 2009 0 600 700 3500 36 6 7 13 7 53.8461533 73.3333359 6 46.1538467 6 5 92.3076935 83.3333359 4 23 0 2.60827494 2.60827494 71 Yes Yes Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes Yes No Yes No No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No 100+ 100+ 51 to 100 41 to 50 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None 1 to 10 1% to 24% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 41 to 50 31 to 40 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% 1% to 24% None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 31 to 40 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 20 to 30 Have not spent anything Have not spent anything 41 to 50 100+ 21 to 30 11 to 20 11 to 20 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone England West Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 12000 7000 4500 500 0 0 0 0 0 0 0 0 8762 4497 3366 899 0 0 0 4265 3366 899 0 0 0 0 7 10 0 7 1 0 0 0 0 0 0 0 1 10 0 6 0 0 1 10 0 6 0 0 1 0 0 6 0 0 7 0 0 1 0 0 0 2 0 0 0 0 6 0 10 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 1 1 0 100 100 0 0 100 0 0 20 100 100 0 0 0 0 0 100 14.2857141 0 100 0 100 0 0 0 0 0 0 0 0 0 0 18295 2298 0 0 4497 11500 25 0 17 17 7 41.1764717 53.3333321 2 11.7647057 10 10 100 100 0 8 2 14.0663652 14.0663652 4627 Yes No Yes No Yes Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes Yes No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes Yes Yes No No Yes Yes No No No No No No No No No No Yes No No No No Yes No Yes Yes No No Yes No No No Yes No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) No No Yes Yes No No Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No Yes No No Yes Yes No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North East North White British White No Yes No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 15 0 0 0 0 0 0 3200 3200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 0 1 0 0 0 0 0 0 0 3 2 0 0 1 0 3 2 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 100 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3200 3200 0 0 0 0 7 0 6 6 2 33.3333321 0 0 0 4 4 100 100 0 1 0 2.9604094 2.9604094 72 Yes No No No No Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No Yes No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Rural England South East South White British White No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 1 0 0 1 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4500 4500 0 0 0 0 5 0 1 1 0 0 0 0 0 1 1 100 100 0 4 4 15.476119 15.476119 4633 Yes Yes No No No Yes No No Yes Yes Yes Yes No Yes No No No No No No No No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes No Yes No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 51 to 100 31 to 40 21 to 30 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 25% to 49% 1 to 10 11 to 20 Have not spent anything 1 to 10 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 20 to 30 Have not spent anything 31 to 40 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 1 to 10 1% to 24% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Married\\Living as Married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Rural Wales Wales Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 20 500 0 0 0 500 0 0 0 0 4000 2000 2000 5400 3000 400 2000 0 0 0 1200 0 1000 200 0 0 0 3 0 2 3 3 0 0 0 1 0 0 0 3 0 0 0 3 0 3 0 1 0 3 0 3 0 1 0 2 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 3 0 0 100 0 0 0 100 0 0 0 0 0 100 0 0 0 100 0 33.3333321 0 0 0 0 66.6666641 50 0 100 100 0 0 0 0 0 10900 5000 2700 0 3200 0 11 1 6 7 6 85.7142868 20 0 0 1 1 100 100 0 4 2 9.84904194 9.84904194 4641 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Don't know Don't know Neither agree nor disagree (0) Don't know Don't know Slightly disagree (-2) Don't know Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11.4285479 11.4285479 4642 Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes No Yes No No No No Yes No No No No No No Yes No No No Yes No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 3 3 3 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 1 to 10 Have not spent anything Have not spent anything 20 to 30 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No Yes No No No No No No No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Rural England South East South White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 20 2600 2500 0 0 100 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 1 0 1 0 0 3 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9600 7000 100 0 0 2500 5 1 0 1 0 0 0 0 0 1 1 100 100 0 4 4 15.476119 15.476119 4657 Yes No Yes Yes No Yes Yes No Yes Yes Yes Yes No Yes No No No Yes No No Yes No No No No No No No No No Yes No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No Yes No Yes Yes No Yes No No No Yes Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No Yes No No Yes No No No Yes Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Most days (365) 31 to 40 11 to 20 11 to 20 31 to 40 None None None None 31 to 40 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 11 to 20 Every 2-3 weeks (30) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 11 to 20 1 to 10 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 31 to 40 21 to 30 11 to 20 2-3 times a week (130) 2-3 times a week (130) 201 to 500 101 to 200 51 to 100 201 to 500 11 to 20 1% to 24% None None None 201 to 500 100% 100% 11 to 20 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 100+ 100+ 20 to 30 Have not spent anything Have not spent anything Have not spent anything 201 to 500 101 to 200 101 to 200 201 to 500 11 to 20 1% to 24% None None None None 201 to 500 100% 201 to 500 100% None 11 to 20 Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No Yes No No Yes Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 0 0 0 0 0 0 9500 8000 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 2500 1500 40 19 0 3 17 237 20 3 0 1 1 150 20 10 0 2 16 75 40 13 0 3 17 225 0 3 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 40 10 0 3 17 210 0 0 0 0 0 0 0 0 0 6 0 0 0 12 0 0 0 100 100 23.0769234 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 6.66666651 0 0 100 100 13500 10500 3000 0 0 0 316 175 123 298 18 6.04026842 0 0 0 280 280 100 100 0 18 0 2.60827494 2.60827494 73 Yes No Yes No No Yes No No Yes No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% 1 to 10 1 to 10 Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Neither agree nor disagree (0) Yes No No Yes No No No No No No No No No No No No No No Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban Scotland Scotland North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Kids 14 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 5 0 0 0 0 0 10 5 5 0 0 0 0 0 0 1 0 0 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 6 5 0 5 0 0 0 5 100 5 5 100 100 5 1 0 4.59556198 4.59556198 74 Yes No Yes Yes No Yes Yes No Yes Yes Yes Yes No Yes Yes No No No No Yes Yes No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Once a day (365) Yes No No No No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No Yes Yes Yes No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 About once a week (52) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% 100% 11 to 20 75% to 99% 11 to 20 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 1 to 10 50% to 74% 50% to 74% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 1 to 10 1 to 10 Have not spent anything Have not spent anything 41 to 50 1 to 10 21 to 30 21 to 30 1 to 10 1% to 24% 11 to 20 75% to 99% 11 to 20 25% to 49% 11 to 20 50% to 74% 11 to 20 75% to 99% None 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes Yes Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No Not particularly confident (2) No No No No Yes No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No No No Yes No Yes 5+ 5+ Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 800 0 0 0 200 600 4000 4000 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 1 10 4 10 0 8 0 0 0 0 0 8 0 0 4 10 0 16 0 0 4 10 0 4 0 0 0 0 0 4 0 10 0 0 0 12 0 0 0 0 0 2 12 0 0 2 5 0 0 0 0 0 0 0 0 0 0 1 10 0 0 0 25 100 75 100 100 0 0 0 0 0 0 100 0 0 0 0 0 0 50 50 50 0 0 0 50 50 0 0 0 0 0 5400 5000 200 200 0 0 41 8 22 30 4 13.333333 93.3333359 12 40 26 19 76.6666641 73.0769196 0 11 5 14.0663652 14.0663652 4669 Yes No Yes No No Yes No No No Yes No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No Yes No Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No Yes Yes No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) About once a week (52) 51 to 100 21 to 30 21 to 30 51 to 100 None None None None 51 to 100 100% 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 51 to 100 31 to 40 21 to 30 51 to 100 None None None None None None 51 to 100 100% 51 to 100 100% 1 to 10 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England South East South White British White Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 1400 1400 0 0 0 0 0 0 0 0 0 1499 1499 0 0 0 0 5 60 6 0 0 0 5 30 0 0 0 0 0 30 0 0 0 0 5 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 60 0 0 0 0 0 0 0 1 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 2899 1499 0 0 1400 0 71 35 30 65 0 0 0 0 0 65 65 100 100 1 6 2 16.0742931 16.0742931 4682 Yes No Yes No No Yes No No No Yes No No No Yes No No No No No Yes Yes No No No No No No No No Yes Yes No Yes No Yes Yes No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 101 to 200 101 to 200 101 to 200 None None None None 101 to 200 100% 100% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything 41 to 50 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything 101 to 200 1 to 10 101 to 200 101 to 200 1 to 10 1% to 24% None None None None 101 to 200 100% 101 to 200 100% None None Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) Slightly disagree (-2) Yes Yes Yes No Yes No No No No No No No No No No No No Yes No No Yes No No No Yes Yes No No Yes No Yes No Yes No Yes No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 15 0 0 0 0 0 0 0 0 0 4999 0 4999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 0 2 0 12 0 0 0 2 0 0 0 120 0 0 0 12 0 120 0 2 0 12 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4999 0 4999 0 0 0 134 2 132 134 2 1.49253726 0 0 0 132 132 100 100 0 0 0 2.9604094 2.9604094 75 Yes No Yes No No Yes No No Yes No No Yes No Yes No No No No No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No Yes Yes No Yes No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No Yes Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 Most days (365) 101 to 200 101 to 200 101 to 200 None None 1 to 10 1% to 24% 101 to 200 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) About once a week (52) 31 to 40 21 to 30 1 to 10 31 to 40 None None 1 to 10 1% to 24% 21 to 30 75% to 99% 75% to 99% 41 to 50 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything 11 to 20 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None 11 to 20 50% to 74% 50% to 74% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 11 to 20 Have not spent anything 11 to 20 11 to 20 Have not spent anything 201 to 500 31 to 40 101 to 200 201 to 500 1 to 10 1% to 24% None None 11 to 20 1% to 24% 101 to 200 75% to 99% 101 to 200 75% to 99% None 1 to 10 Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No Yes No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No No Yes No Yes No Yes Yes CAWI Adults 20 1299 0 0 0 0 1497 0 0 0 0 0 0 4100 2000 0 1000 0 1100 0 0 0 0 0 899 899 0 150 5 31 10 24 2 0 5 30 0 0 0 150 0 1 2 24 0 150 5 31 2 24 0 0 0 0 2 0 0 0 0 0 0 0 0 10 3 1 0 0 0 0 150 5 29 0 12 0 0 0 0 0 0 0 0 0 0 0 0 8 0 2 0 0 6.66666651 100 100 0 0 60 100 100 0 0 3.22580647 93.5483856 93.5483856 100 0 0 0 0 100 0 0 0 50 50 0 0 0 0 0 5498 1899 0 1599 2000 0 222 35 177 212 2 0.943396211 0 14 6.60377359 210 196 93.396225 93.3333359 0 10 4 15.476119 15.476119 4684 Yes No Yes No No Yes No No Yes Yes Yes Yes No Yes No No No No No Yes Yes No No No No No No No No No Yes No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 11 to 20 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 11 to 20 Have not spent anything 11 to 20 Have not spent anything 11 to 20 11 to 20 11 to 20 1 to 10 25% to 49% None None 1 to 10 1% to 24% 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) No No No Yes No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No Yes No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Not particularly confident (2) No Yes No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 0 0 0 0 0 0 5199 3999 1200 0 0 0 1500 1500 0 0 0 0 0 350 0 0 350 0 0 0 0 4 0 4 12 0 0 0 0 0 0 0 0 1 0 4 12 0 0 1 0 4 12 0 0 1 0 4 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 100 0 100 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 7399 3999 1550 0 1850 0 20 0 17 17 5 29.4117641 0 1 5.88235283 12 12 100 100 0 3 0 2.9604094 2.9604094 76 Yes No No No No No No No No Yes No No No Yes No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) Yes No No No No No Yes No No No No Yes No Yes Yes No No No No No No No No Yes No No No Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No Yes No No Yes No No No Yes No No No Yes No No No Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% None None None None None None None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 1 1 No Yes No Phone Urban England North West North Chinese Minority Ethnic Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 24 0 0 0 0 0 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 8 1 0 0 0 1 3 0 0 0 0 0 5 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 1000 1000 0 0 0 0 10 3 5 8 0 0 50 0 0 8 0 0 0 0 2 1 11.7109346 11.7109346 4694 Yes No No Yes No Yes Yes No Yes Yes No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No No No Several times a day (730) Yes No No Yes Yes No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 1% to 24% None None None 100% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Strongly agree (4) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban Northern Ireland Northern Ireland North Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Kids 14 0 0 0 0 0 0 8000 8000 0 0 0 0 1300 1000 0 300 0 0 0 0 0 0 0 0 0 0 2 4 0 4 0 0 2 0 0 2 0 0 0 0 0 0 0 0 2 0 0 2 0 0 2 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 2 0 0 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 9300 8300 0 0 1000 0 10 4 0 4 4 100 20 0 0 0 0 100 0 0 6 0 2.39140558 2.39140558 77 Yes No No No No Yes No No Yes No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Slightly disagree (-2) Don't know Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Yes Yes No No No No No Yes Yes Yes Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes Yes No Yes No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes Yes No Phone Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 21 89 0 0 89 0 0 0 0 0 0 0 0 5500 1500 2000 2000 0 0 0 0 0 0 0 1500 1500 0 1 0 0 2 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5089 3589 0 0 1500 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 7 3 9.84904194 9.84904194 4715 Yes No No No No Yes No No Yes No No No No No Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No Yes Yes No No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 41 to 50 20 to 30 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Neither agree nor disagree (0) No No Yes Yes No Yes No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England Yorkshire and The Humber North Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 4 2 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4500 3000 0 0 1500 0 6 0 4 4 0 0 0 0 0 4 4 100 100 0 2 3 10.0924006 10.0924006 4719 Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No Several times a day (730) No Yes No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 20 to 30 11 to 20 1 to 10 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly confident (3) No No No No No No No No Yes No No Yes No No No No No Yes No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Part time None No Yes No No No No No 1 1 Yes No No Phone Urban England South West South Bangladeshi Minority Ethnic No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 23 2000 0 2000 0 0 0 3000 3000 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 1000 1000 0 0 2 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9000 4000 0 0 3000 2000 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 12.5739346 12.5739346 4752 Yes No No No No Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) No No No Yes No No No No No No No No Yes No No Yes Yes Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 41 to 50 31 to 40 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 1 to 10 11 to 20 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) No No No Yes No No No No No No No No No No Yes No No No Yes No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Rural Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 12 0 0 0 0 0 0 3009 3009 0 0 0 0 1200 1200 0 0 0 0 0 0 0 0 0 500 500 0 0 2 2 4 16 6 0 0 2 0 0 0 0 0 0 4 16 0 0 0 2 4 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 16 0 0 0 0 0 0 0 0 0 0 2 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 4709 3509 0 0 1200 0 30 2 20 22 0 0 0 0 0 22 22 100 100 0 8 0 4.43454361 4.43454361 78 Yes No No Yes Yes Yes No No Yes No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) 1 to 10 Have not spent anything Have not spent anything 1 to 10 Most days (365) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 1 to 10 11 to 20 20 to 30 Have not spent anything 51 to 100 51 to 100 51 to 100 1 to 10 1% to 24% None None None None 51 to 100 100% 51 to 100 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No Yes No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 15 0 0 0 0 0 0 2499 2499 0 2499 2499 0 3800 2000 0 0 0 1800 0 599 0 0 599 0 0 0 0 1 1 10 55 0 0 0 0 0 0 0 0 0 0 10 55 0 0 0 0 10 55 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 9996 4998 599 1800 2599 0 67 0 65 65 10 15.3846149 0 0 0 55 55 100 100 0 2 0 3.06790113 3.06790113 79 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 1 100 100 0 0 2 14.8424444 14.8424444 4763 Yes Yes No No No Yes No No Yes No No Yes No Yes Yes Yes No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No Yes No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No No Yes Yes No No No No Yes No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) Most days (365) 41 to 50 1 to 10 31 to 40 41 to 50 None None None None 41 to 50 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 11 to 20 51 to 100 51 to 100 None None None None None None 41 to 50 50% to 74% 41 to 50 50% to 74% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) No Yes No Yes No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Urban Scotland Scotland North White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 20 0 0 4 44 5 10 0 0 0 4 0 10 0 0 4 40 0 20 0 0 4 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 3000 3000 0 0 0 0 73 14 54 68 0 0 0 0 0 68 48 70.5882339 70.5882339 0 5 4 14.8424444 14.8424444 4772 Yes No Yes No No No No No Yes Yes No Yes No Yes No No No No No No No No No No No No Yes No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Most days (365) 51 to 100 11 to 20 41 to 50 51 to 100 None None None None 51 to 100 100% 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 21 to 30 51 to 100 51 to 100 None None None None None None 51 to 100 100% 51 to 100 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No No No No Yes Yes Yes Yes No No Yes Yes No No No Yes Yes No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No Yes No Yes Yes Yes 4 4 No No Yes Phone Rural Wales Wales Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 21 0 0 0 0 0 0 3500 3500 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 70 1 0 6 6 0 20 0 0 1 0 0 50 0 0 5 5 0 70 0 0 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 70 0 0 6 5 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 3500 3500 0 0 0 0 83 21 60 81 0 0 0 0 0 81 81 100 100 0 2 4 11.4285479 11.4285479 4783 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Strongly agree (4) Strongly agree (4) Don't know Strongly agree (4) Don't know Strongly disagree (-4) Don't know Strongly disagree (-4) No No No No Yes No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No Yes No No No No No No No No No Not particularly confident (2) No Yes No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 0 0 0 0 0 2 2 100 100 0 0 0 2.60827494 2.60827494 80 Yes Yes Yes Yes No Yes No No No No No Yes No Yes No No No No No No No No No No No No No No Yes Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No Yes Yes Yes No No Yes No No Yes No Yes Yes Yes Yes Yes No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 3 3 Less often (6) Don't know 51 to 100 1 to 10 41 to 50 51 to 100 1 to 10 1% to 24% 100% None None 41 to 50 100% 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 11 to 20 11 to 20 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 31 to 40 31 to 40 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 11 to 20 1 to 10 31 to 40 Have not spent anything 51 to 100 1 to 10 51 to 100 51 to 100 11 to 20 1% to 24% 11 to 20 50% to 74% None None 41 to 50 100% 41 to 50 100% None 1 to 10 Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) No Yes Yes No No No No No No No No No No No Yes No Yes Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 3 3 No No Yes Phone Urban Scotland Scotland North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 22 5000 0 0 2000 0 3000 4000 2000 2000 0 0 0 4200 4000 0 200 0 0 0 0 0 0 0 0 0 0 54 3 0 2 1 0 2 0 0 0 0 0 50 2 0 1 1 0 52 2 0 1 1 0 10 2 0 1 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 42 0 0 0 1 0 0 0 0 0 0 0 0 0 2 1 0 1 0 0 19.2307701 100 0 100 100 100 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 11200 4200 2000 1000 4000 0 60 2 54 56 13 23.2142849 70.5882339 0 0 43 43 100 100 0 4 3 14.8424444 14.8424444 4785 Yes No Yes Yes No Yes No No Yes Yes No Yes No Yes No No No Yes No No Yes No No No No No No No No Yes Yes No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No No No No No Yes No No Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No Yes No No Yes No Yes Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Most days (365) 21 to 30 1 to 10 11 to 20 21 to 30 None None 1 to 10 25% to 49% None None None Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) 20 to 30 20 to 30 Have not spent anything Most days (365) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 50% to 74% 50% to 74% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 41 to 50 21 to 30 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) 11 to 20 1 to 10 11 to 20 11 to 20 None None 100% 1 to 10 1% to 24% 1 to 10 50% to 74% 1 to 10 25% to 49% 25% to 49% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) 20 to 30 11 to 20 1 to 10 Have not spent anything About once a week (52) Most days (365) 21 to 30 1 to 10 11 to 20 11 to 20 None None 100% None None 11 to 20 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 51 to 100 21 to 30 51 to 100 51 to 100 None None 1 to 10 50% to 74% 11 to 20 1% to 24% 21 to 30 25% to 49% 21 to 30 25% to 49% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Kids 13 0 0 0 0 0 0 3000 3000 0 0 0 0 4200 1000 1200 2000 0 0 0 2200 1200 1000 0 0 0 0 30 13 6 19 23 0 10 0 3 4 5 0 20 10 3 12 15 0 30 10 6 16 20 0 0 0 0 0 0 0 0 0 0 3 3 0 10 0 0 2 0 0 10 0 5 0 5 20 0 0 0 0 0 0 0 0 0 0 3 0 3 3 0 0 0 33.3333321 0 0 0 0 0 50 50 0 0 0 0 0 0 100 12.5 62.5 31.25 31.25 0 100 0 100 100 0 0 0 0 0 7000 6000 0 0 1000 0 91 22 60 82 0 0 66.6666641 12 14.6341467 82 30 36.5853653 36.5853653 0 9 0 2.60827494 2.60827494 81 Yes Yes No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 21 to 30 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 11 to 20 None 11 to 20 51 to 100 41 to 50 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 11 to 20 None None Don't know Don't know Don't know Don't know Strongly agree (4) Strongly disagree (-4) Strongly agree (4) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Working Part time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 4500 3000 1500 0 0 0 0 0 0 0 0 4400 4400 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7400 4400 0 0 3000 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 15 3 14.9710493 14.9710493 4796 Yes Yes Yes No No Yes No No No Yes No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No 100+ 100+ 100+ 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 101 to 200 21 to 30 21 to 30 None None None None None 21 to 30 100% 100% 101 to 200 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 41 to 50 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 Have not spent anything Have not spent anything 41 to 50 100+ 101 to 200 21 to 30 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None 101 to 200 Don't know Don't know Strongly disagree (-4) Don't know Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Yes Yes No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No Yes No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No Yes No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time None No Yes No No No No No 5+ 5+ Yes No No Phone Urban England South East South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 26000 12000 6000 8000 0 0 0 0 0 0 0 0 8100 4500 3600 0 0 0 0 0 0 0 0 0 0 0 160 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 130 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30500 8000 0 0 4500 18000 160 0 30 30 0 0 0 0 0 30 30 100 100 0 130 5 12.5739346 12.5739346 4803 Yes No No No No Yes No No No No Yes No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes No No Yes Yes No No No No Yes No Yes No No Yes No No No No No No No No No No No No No No Yes No Yes Yes Yes No No Yes Yes No No No No Yes No Yes No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No Yes No No No 51 to 100 31 to 40 Have not spent anything 31 to 40 3 11 to 20 Have not spent anything Have not spent anything Every 2-3 weeks (30) Most days (365) 51 to 100 11 to 20 31 to 40 51 to 100 1 to 10 1% to 24% 25% to 49% 1 to 10 1% to 24% 41 to 50 100% 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 11 to 20 1 to 10 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 41 to 50 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 Have not spent anything 20 to 30 Have not spent anything About once a week (52) 2-3 times a week (130) 21 to 30 11 to 20 1 to 10 21 to 30 1 to 10 25% to 49% None 1 to 10 1% to 24% 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 11 to 20 Have not spent anything 41 to 50 31 to 40 51 to 100 31 to 40 51 to 100 51 to 100 11 to 20 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 51 to 100 100% 51 to 100 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes Yes No Yes No Yes Yes No No No No No No Yes Yes No Yes Yes Yes No No No Yes No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England North East North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 6900 0 3500 2200 1200 0 0 0 0 0 0 0 7000 5000 0 2000 0 0 0 3000 0 3000 0 0 0 0 60 13 0 3 22 0 20 1 0 0 12 0 35 12 0 0 10 0 55 13 0 0 22 0 5 0 0 0 6 0 4 0 0 0 0 0 1 0 0 0 2 0 0 50 13 0 0 16 0 0 0 0 0 0 0 0 0 5 0 0 3 0 0 9.090909 40 1.81818187 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 27.272728 0 9.090909 100 100 0 0 0 0 0 16900 7200 1200 0 5000 3500 98 33 57 90 11 12.2222223 21.0526314 3 3.33333325 79 79 100 100 0 8 0 3.06790113 3.06790113 82 Yes Yes Yes Yes No Yes Yes No Yes Yes Yes Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes Yes No No No No No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 41 to 50 41 to 50 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% None None None 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 1 to 10 1 to 10 Have not spent anything 41 to 50 Have not spent anything 21 to 30 1 to 10 11 to 20 21 to 30 None None None None None None 21 to 30 75% to 99% 21 to 30 75% to 99% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No Yes Yes No Yes No Yes No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes No Yes No No Yes No No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Urban England East of England Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 22 200 0 0 0 200 0 0 0 0 0 0 0 5000 4500 0 500 0 0 0 0 0 0 0 498 498 0 20 0 3 4 1 2 10 0 0 0 0 0 10 0 3 1 1 0 20 0 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 20 0 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 2 0 0 0 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 100 0 0 0 0 0 100 100 0 0 0 0 0 5698 998 200 0 4500 0 30 10 15 25 0 0 0 0 0 25 24 96 96 0 5 4 9.84904194 9.84904194 4823 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 Most days (365) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 Have not spent anything Have not spent anything Have not spent anything 21 to 30 Have not spent anything 1 to 10 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 41 to 50 41 to 50 41 to 50 None None 1 to 10 1% to 24% 41 to 50 100% 100% 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 1 to 10 1 to 10 Have not spent anything Have not spent anything 51 to 100 51 to 100 51 to 100 1 to 10 1% to 24% None None 1 to 10 1% to 24% 51 to 100 100% 51 to 100 100% None 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes No No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 21 1100 0 0 0 500 600 0 0 0 0 0 0 2999 0 0 2500 0 499 0 0 0 0 0 4000 4000 0 15 0 0 6 45 5 0 0 0 0 0 0 15 0 0 2 45 0 15 0 0 2 45 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 15 0 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 4 0 5 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 4.44444466 100 100 0 0 0 0 0 7699 6500 500 699 0 0 71 0 62 62 2 3.22580647 0 2 3.22580647 60 60 100 100 0 9 5 10.8361282 10.8361282 4832 Yes Yes Yes No No Yes Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 3 1 to 10 1 to 10 Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything About once a month (12) 21 to 30 11 to 20 11 to 20 11 to 20 100% 1% to 24% None None 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 21 to 30 Have not spent anything 21 to 30 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 21 to 30 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 20 to 30 Have not spent anything 1 to 10 1 to 10 21 to 30 11 to 20 11 to 20 11 to 20 100% 1 to 10 1% to 24% None None None 100% None 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes No No No No Yes No No No No No No No No Yes No Yes Yes No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban Scotland Scotland North White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 22 3000 1000 0 1500 500 0 0 0 0 2100 0 2100 3000 1000 1000 1000 0 0 0 500 500 0 0 2000 2000 0 25 0 1 1 1 2 15 0 1 0 0 0 0 0 0 0 0 0 15 0 1 0 0 0 15 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 1 1 2 100 4 0 0 100 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9100 4500 2600 0 1000 1000 30 16 0 16 16 100 3.33333325 0 0 0 0 100 0 0 14 2 14.8424444 14.8424444 4834 Yes No Yes Yes No Yes Yes No No Yes Yes Yes No Yes No No No No No No No No Yes No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes Yes Yes Yes No Yes No No No Yes Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No Yes No 100+ 100+ 100+ 11 to 20 3 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 51 to 100 31 to 40 11 to 20 51 to 100 31 to 40 50% to 74% 1% to 24% 11 to 20 25% to 49% 11 to 20 75% to 99% 75% to 99% 11 to 20 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 25% to 49% None None 100% 1 to 10 51 to 100 31 to 40 11 to 20 About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 31 to 40 31 to 40 21 to 30 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 31 to 40 1 to 10 21 to 30 31 to 40 21 to 30 75% to 99% None None None 1 to 10 1% to 24% 1 to 10 100% 100% Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 20 to 30 Have not spent anything 20 to 30 100+ 101 to 200 41 to 50 41 to 50 51 to 100 51 to 100 50% to 74% 11 to 20 1% to 24% 11 to 20 1% to 24% 21 to 30 75% to 99% 21 to 30 75% to 99% None 21 to 30 Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Strongly disagree (-4) Yes No No No Yes Yes No Yes No No No No No Yes Yes Yes Yes No Yes No Yes No Yes No No No No No Yes Yes Yes Yes No No No Yes No No No Yes Yes No No No No No No No Yes No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No Yes Yes No Yes Yes No No No No No No Yes Yes Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Urban England North West North White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 21 36000 30000 2000 3000 1000 0 3500 3500 0 5500 3500 2000 4000 2500 1500 0 0 0 0 1500 1500 0 0 0 0 0 75 3 3 31 3 2 40 1 2 1 1 1 15 1 0 30 1 1 55 2 2 31 2 2 40 2 0 27 0 0 10 1 0 0 1 0 15 0 0 0 0 0 4 14 0 2 4 2 0 0 0 0 0 0 0 0 0 20 1 1 0 1 0 72.727272 16.666666 27.272728 93.3333359 98.1818161 100 33.3333321 0 0 100 0 0 0 100 100 87.0967712 0 0 12.9032259 100 100 0 100 0 100 100 0 0 0 0 0 47500 10000 3000 0 2500 32000 117 46 48 94 69 73.4042587 13.043478 15 15.9574471 25 22 96.8085098 88 0 23 2 14.413929 14.413929 4838 Yes No Yes No No Yes No No Yes Yes No No No Yes No No No No No No Yes No No No No No No No No Yes No Yes Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No Yes No No No No Yes No No No No No No Yes No No No No Yes No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% None None None Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes No Yes No No No No No No No No No No Yes Yes Yes No Yes No No No No No No No No No No No Very confident (4) No No No No No No No No No No No Yes No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England North East North White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 23 799 0 799 0 0 0 0 0 0 0 0 0 1050 1050 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 1 4 3 0 0 0 1 2 0 0 0 0 0 2 0 0 0 0 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 3349 1500 0 0 1050 799 8 3 2 5 0 0 0 0 0 5 0 0 0 0 3 1 10.0924006 10.0924006 4844 Yes Yes No No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 31 to 40 1 to 10 21 to 30 31 to 40 1 to 10 25% to 49% None 1 to 10 25% to 49% 21 to 30 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 Have not spent anything 11 to 20 About once a week (52) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 41 to 50 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything 51 to 100 21 to 30 31 to 40 51 to 100 21 to 30 25% to 49% None None 1 to 10 1% to 24% 31 to 40 100% 31 to 40 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Yes Yes Yes No No No No Yes No No No No No Yes No No No No No No No No No No No No No No Yes Yes Yes Yes No No Yes No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No Yes No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 3 3 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 2500 2000 0 500 0 0 0 0 0 0 0 2000 0 2000 40 0 0 2 10 12 10 0 0 0 0 12 30 0 0 0 10 0 40 0 0 0 10 12 10 0 0 0 0 12 0 0 0 0 0 0 10 0 0 0 0 0 0 30 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 25 0 25 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 4500 500 2000 0 2000 0 64 22 40 62 22 35.4838715 0 10 16.1290321 40 40 100 100 0 2 3 14.9710493 14.9710493 4853 Yes No No No No No No No Yes Yes No Yes No Yes No No No No No No No No Yes No No No No No No No No Yes Yes No No Yes Yes No No No No No Once a day (365) No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly disagree (-4) Don't know Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Don't know No No No Yes No No Yes Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No Yes No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 800 0 800 0 1000 1000 0 0 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1800 1800 0 0 0 0 4 0 1 1 0 0 0 0 0 1 1 100 100 0 3 0 2.60827494 2.60827494 83 Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No No Yes Yes Yes No No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes Yes Yes No No No No No No No No No Yes No Yes No Yes No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes Yes Yes Yes No Yes Yes No Yes Yes Yes Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None None Don't know Strongly disagree (-4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Slightly disagree (-2) Slightly disagree (-2) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban England West Midlands Midlands Indian Minority Ethnic Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 0 1 0 0 0 0 2 0 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 2 3 0 0 0 0 0 3 0 0 0 0 0 4 9.84904194 9.84904194 4855 Yes Yes No Yes No Yes No No No No No No No Yes Yes No No No Yes No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 11 to 20 11 to 20 11 to 20 1 to 10 1% to 24% None None None None None None None 1% to 24% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time Any Yes No Yes No No Yes No 4 4 No Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 2110 2110 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 1 10 1 0 0 0 0 0 0 0 0 0 1 10 0 0 0 0 1 10 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 2610 500 0 0 2110 0 12 0 11 11 1 9.090909 0 0 0 10 0 9.090909 0 0 1 4 10.8361282 10.8361282 4859 Yes Yes Yes Yes Yes Yes Yes No No Yes No No No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes Yes Yes Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No Yes No No No Yes No No No Yes Yes No Yes No No No No No No No No No No No No Yes No Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 Have not spent anything 31 to 40 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything 31 to 40 Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes Yes Yes No No Yes No No No No No No No No No No Yes No Yes Yes Yes No Yes No No No No No Yes No Yes No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England East of England Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 4000 0 4000 0 0 0 1800 0 1300 0 0 0 500 1300 1300 0 0 0 0 0 14 1 0 0 2 0 4 1 0 0 0 0 10 0 0 0 0 0 14 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 100 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4500 0 4000 0 500 0 17 5 10 15 1 6.66666651 0 0 0 14 14 100 100 0 2 2 14.6100512 14.6100512 4873 Yes No Yes No No Yes No No Yes No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No No Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North White British White No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Kids 15 2500 0 0 2500 0 0 3000 3000 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 5500 0 0 1500 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 2.9604094 2.9604094 84 Yes Yes No No No No No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 11 to 20 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 3700 2000 500 1200 0 0 0 0 0 0 0 0 0 0 0 0 0 2 20 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3200 1200 0 0 2000 0 22 0 20 20 0 0 0 0 0 20 20 100 100 0 2 1 15.476119 15.476119 4898 Yes No No Yes No Yes No No No Yes No Yes No Yes No No No Yes No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No Several times a day (730) Yes Yes No Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes No Yes No No No Yes No No No Yes Yes No No No No No Yes No No Yes Yes Yes No No No No No Yes Yes No Yes Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 31 to 40 11 to 20 11 to 20 31 to 40 None None None None None None None Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Most days (365) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None None None Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) About once a week (52) 101 to 200 41 to 50 51 to 100 101 to 200 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 201 to 500 51 to 100 101 to 200 201 to 500 None None None None None None 11 to 20 1% to 24% 11 to 20 1% to 24% None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes Yes No Yes Yes No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes Yes 4 4 Yes No No Phone Rural Northern Ireland Northern Ireland North White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes Yes Yes No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 40 0 20 12 150 0 20 0 10 10 50 0 20 0 10 2 100 0 40 0 20 12 150 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 1000 0 222 90 132 222 0 0 0 0 0 222 20 9.00900936 9.00900936 0 0 4 7.70751095 7.70751095 4910 Yes Yes Yes No No Yes No No No No No No No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) 21 to 30 1 to 10 11 to 20 21 to 30 None None None None 21 to 30 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything About once a week (52) 11 to 20 1 to 10 1 to 10 None None None 1 to 10 100% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 31 to 40 31 to 40 21 to 30 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 51 to 100 11 to 20 31 to 40 41 to 50 None None None None 1 to 10 1% to 24% 41 to 50 75% to 99% 41 to 50 75% to 99% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Don't know Neither agree nor disagree (0) Don't know Slightly disagree (-2) Yes Yes No Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Yes Yes Yes No No Yes No No No Yes No No No No No No No No No No No No No No No No Yes No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 3 3 No Yes No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 22 0 0 0 0 0 0 2500 2500 0 0 0 0 3500 2500 1000 0 0 0 0 0 0 0 0 1500 1500 0 30 11 2 2 10 2 10 0 1 0 0 0 20 5 1 2 10 0 30 5 2 2 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 1 30 5 2 0 10 0 0 0 0 0 0 0 0 0 0 6 0 0 0 2 0 0 0 100 100 0 0 100 100 100 0 0 0 100 100 0 0 0 50 0 0 0 0 0 100 100 0 0 0 0 0 6500 4000 0 0 2500 0 57 11 38 49 0 0 0 5 10.2040815 49 47 95.9183655 95.9183655 0 8 3 14.413929 14.413929 4912 Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 11 to 20 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England London South No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Kids 12 0 0 0 0 0 0 0 0 0 1298 1298 0 2515 2515 0 0 0 0 0 2337 1170 1167 0 900 900 0 0 0 10 0 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5880 3365 0 0 2515 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 2.70298147 2.70298147 85 Yes Yes Yes Yes No Yes Yes No No Yes Yes Yes No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) No No No No No No No Yes No No No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 100+ 1 to 10 Have not spent anything Have not spent anything 11 to 20 51 to 100 41 to 50 1 to 10 31 to 40 31 to 40 None None None None None None 31 to 40 100% 31 to 40 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No Yes No No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 4 4 Yes No No Phone Urban Northern Ireland Northern Ireland North White Irish White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 10000 10000 0 0 0 0 0 0 0 0 0 0 4000 2000 1000 1000 0 0 0 0 0 0 0 0 0 0 30 0 0 10 8 2 0 0 0 0 0 2 30 0 0 0 8 0 30 0 0 0 8 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 8 2 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 13000 1000 0 0 2000 10000 50 2 38 40 0 0 0 0 0 40 40 100 100 0 10 4 11.0078382 11.0078382 4947 Yes Yes No No No No No No Yes No No No No Yes No No No Yes No No Yes No No No No No No Yes No Yes No No No No No Yes No No No No No No Several times a day (730) Yes Yes Yes No Yes Yes No No No No No Yes Yes Yes Yes Yes Yes No No No No No No Yes No Yes No Yes No No No No No No Yes Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No Yes No Yes No No No No No Yes No Yes Yes No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 41 to 50 Have not spent anything 41 to 50 Every 2-3 weeks (30) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 50% to 74% 75% to 99% 31 to 40 11 to 20 11 to 20 Most days (365) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% 25% to 49% None None 100% 1 to 10 1 to 10 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 51 to 100 Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 75% to 99% 1 to 10 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) No Yes Yes No No No No No No No No No No No No Yes No No Yes No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban Wales Wales Midlands White British White Yes Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 23 200 0 0 200 0 0 5000 0 5000 4000 2000 2000 4000 2000 0 2000 0 0 0 1200 0 1200 0 0 0 0 2 10 3 3 0 0 0 5 0 0 0 0 0 5 2 0 0 0 0 10 2 0 0 0 0 5 2 0 0 0 1 3 1 0 0 0 0 5 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 1 0 0 0 2 0 1 3 0 0 0 50 0 0 0 50 60 50 60 80 100 33.3333321 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14400 5400 7000 0 2000 0 18 5 7 12 7 58.3333321 38.4615402 5 41.6666679 5 3 83.3333359 60 1 6 4 11.4285479 11.4285479 4948 Yes Yes No No No Yes No No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No Yes No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes No No Phone Urban England London South White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 900 900 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 4 1 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1900 1000 0 0 900 0 5 0 4 4 0 0 0 0 0 4 4 100 100 0 1 2 16.0742931 16.0742931 4951 Yes No No No No No No No No No No No No Yes No No No Yes Yes Yes Yes No No No No No No Yes No Yes Yes Yes Yes No No No Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 3 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 11 to 20 11 to 20 Most days (365) Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 51 to 100 20 to 30 20 to 30 Most days (365) Most days (365) Most days (365) 51 to 100 1 to 10 11 to 20 21 to 30 1 to 10 25% to 49% 25% to 49% 11 to 20 50% to 74% 1 to 10 50% to 74% 50% to 74% 11 to 20 21 to 30 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 51 to 100 11 to 20 1 to 10 1 to 10 21 to 30 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 1 to 10 1 to 10 1 to 10 Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 100+ 51 to 100 51 to 100 1 to 10 11 to 20 1 to 10 51 to 100 21 to 30 31 to 40 51 to 100 21 to 30 25% to 49% 21 to 30 25% to 49% 31 to 40 50% to 74% 11 to 20 50% to 74% 11 to 20 75% to 99% 11 to 20 41 to 50 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England North East North White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 12 2800 400 400 400 400 1200 6000 3000 3000 1000 500 500 6000 500 500 3000 1000 500 500 1500 500 500 500 1500 1500 0 6 60 6 15 6 6 2 10 2 5 2 0 2 20 2 5 2 0 4 30 4 10 4 0 4 10 2 5 2 0 4 10 2 5 2 6 4 20 2 5 2 0 5 0 10 2 5 2 0 2 2 2 15 2 0 0 0 2 30 2 5 2 6 100 66.6666641 100 0 100 33.3333321 25 66.6666641 50 66.6666641 50 50 50 100 100 50 50 50 50 100 100 50 50 50 100 100 0 100 0 0 0 17500 8900 5400 900 1500 800 99 21 31 52 23 44.2307701 41.4285698 33 63.4615402 29 19 80.7692337 65.5172424 19 47 0 3.06790113 3.06790113 86 Yes Yes Yes No No Yes Yes No No No No No No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) No Yes No No No No No No No No No No Yes No No Yes Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes Yes No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 51 to 100 Have not spent anything 1 to 10 Have not spent anything 41 to 50 Have not spent anything 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) 41 to 50 Have not spent anything Have not spent anything 41 to 50 About once a month (12) 21 to 30 21 to 30 21 to 30 21 to 30 100% None None None 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 41 to 50 41 to 50 100+ Have not spent anything 41 to 50 31 to 40 31 to 40 31 to 40 100% None None None None None 100% None 1 to 10 Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 3 3 Yes Yes No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 5000 5000 0 2000 2000 0 15500 10000 0 1000 0 4500 0 4500 0 0 4500 500 500 0 0 5 1 13 24 1 0 0 0 0 0 0 0 0 0 10 24 0 0 0 0 10 24 0 0 0 0 10 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 100 0 0 0 100 0 0 0 0 0 32000 8500 4500 4500 14500 0 44 0 34 34 34 100 0 0 0 0 0 100 0 0 10 3 9.84904194 9.84904194 4959 Yes No Yes Yes No Yes Yes No No No No Yes No Yes No No No Yes No No Yes No Yes No No No Yes No No Yes No Yes Yes Yes No Yes No No No No No No Several times a day (730) Yes No Yes No Yes Yes No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No Yes No No No No Yes No Yes No Yes Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 51 to 100 31 to 40 11 to 20 Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 41 to 50 11 to 20 51 to 100 Have not spent anything 11 to 20 Have not spent anything 2-3 times a week (130) 41 to 50 11 to 20 11 to 20 None None 25% to 49% None None 1 to 10 25% to 49% 11 to 20 75% to 99% 75% to 99% 21 to 30 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 Have not spent anything Have not spent anything 11 to 20 2-3 times a week (130) About once a week (52) 41 to 50 31 to 40 1 to 10 41 to 50 None None 11 to 20 25% to 49% 41 to 50 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 31 to 40 11 to 20 51 to 100 Have not spent anything 101 to 200 51 to 100 1 to 10 51 to 100 11 to 20 1% to 24% 1 to 10 1% to 24% 11 to 20 25% to 49% 51 to 100 75% to 99% 51 to 100 75% to 99% None 31 to 40 Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Yes No No Yes No No Yes No No No No No No Yes Yes No Yes No No No No No No No No No No No Yes Yes No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No Yes No No No No No No Very confident (4) No No Yes No No No No No No No No No No No Yes No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes Yes No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 6000 4000 2000 0 0 0 18500 4500 2000 10000 0 2000 0 1122 0 0 1122 1000 1000 0 2 19 0 45 44 1 1 17 0 15 40 0 1 0 0 0 4 0 2 17 0 15 44 0 0 17 0 0 0 0 0 0 0 8 0 0 0 0 0 0 20 0 5 2 0 0 12 44 0 0 0 0 0 0 0 0 0 0 2 0 30 0 1 0 0 0 100 100 100 0 0 0 100 0 0 0 0 0 0 26.666666 0 33.3333321 80 80 0 0 45.4545441 100 100 0 0 0 0 0 25744 15000 3122 2000 5622 0 111 73 5 78 17 21.7948723 16 20 25.6410255 61 58 96.1538467 95.0819702 0 33 5 11.7109346 11.7109346 4964 No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No No No No No No No Once a day (365) No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 50% to 74% None None None 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) No Yes No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No Yes No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Part time Any Yes No No Yes Yes Yes No 5+ 5+ Yes No No Phone Urban Scotland Scotland North White British White No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 21 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 66.6666641 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 4 1 0 1 1 100 50 0 0 0 0 100 0 0 3 5 11.6103354 11.6103354 4965 Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No Once a day (365) Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes No No Yes Yes No No No No Yes Yes No No No No No No No No No Yes Yes Yes Yes No No Yes No No No No Yes Yes Yes No No Yes Yes No No No No Yes Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) About once a week (52) 51 to 100 41 to 50 41 to 50 51 to 100 None None None None 41 to 50 50% to 74% 50% to 74% 201 to 500 11 to 20 11 to 20 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything About once a month (12) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 1 to 10 25% to 49% None None None 1 to 10 50% to 74% 50% to 74% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 41 to 50 Have not spent anything 101 to 200 51 to 100 51 to 100 101 to 200 1 to 10 1% to 24% None None None None 51 to 100 50% to 74% 51 to 100 50% to 74% 11 to 20 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes No No No No No No No No Yes No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No Yes Yes Yes Yes Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No Yes No Yes No No Yes Yes Yes Yes Yes Yes No No No Yes Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes Yes No No Yes No Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 14 0 0 0 0 0 0 5000 5000 0 0 0 0 4200 4200 0 0 0 0 0 0 0 0 0 1000 1000 0 100 14 2 0 10 3 50 3 2 0 0 0 50 8 0 0 10 0 100 11 2 0 10 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 4 2 0 10 0 500 20 20 0 0 0 0 0 0 3 0 0 0 3 0 0 0 50 50 27.272728 0 0 50 63.636364 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 10200 6000 0 0 4200 0 129 55 68 123 3 2.43902445 0 0 0 120 66 56.0975609 55 20 6 0 2.9604094 2.9604094 87 Yes No No No No Yes No No No No No No No Yes No No No No No No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 41 to 50 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 11 to 20 1 to 10 Have not spent anything 41 to 50 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No Yes No No No No Yes Yes No Yes Yes Yes Yes Yes No No No Yes No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban Scotland Scotland North White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 5000 4500 0 500 0 0 0 0 0 0 0 1699 1500 199 0 0 0 1 0 5 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 6699 2000 199 0 4500 0 6 1 0 1 1 100 0 0 0 0 0 100 0 0 5 2 10.0057049 10.0057049 4967 Yes No No Yes No No No No Yes No No Yes No Yes No Yes No No No No Yes No No No No No No No No No No Yes Yes No Yes Yes No No No No No No Once a day (365) No No Yes No No No No Yes No No No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Neither agree nor disagree (0) Don't know Slightly agree (2) Don't know Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Yes No Yes Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No Slightly confident (3) Yes No No Yes No No No No No No No No No No No No No Yes No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone England West Midlands Midlands White British White No No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 20 0 0 0 0 0 0 2000 0 2000 0 0 0 500 0 0 500 0 0 0 500 0 500 0 2500 2500 0 0 4 0 3 0 10 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 10 0 0 0 0 0 75 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5500 3500 2000 0 0 0 17 4 0 4 3 75 0 0 0 1 1 100 100 0 13 3 9.84904194 9.84904194 4970 Yes No Yes No No Yes No No No No Yes Yes No Yes No No No No No Yes Yes No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Less often (6) 101 to 200 51 to 100 51 to 100 101 to 200 None None None None 101 to 200 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 101 to 200 51 to 100 51 to 100 101 to 200 None None None None None None 101 to 200 100% 101 to 200 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England London South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 15 0 0 0 0 0 0 2050 2050 0 2050 2050 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 162 1 1 0 0 0 81 0 0 0 0 0 81 0 0 0 0 0 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4100 4100 0 0 0 0 164 81 81 162 0 0 0 0 0 162 162 100 100 0 2 0 2.60827494 2.60827494 88 Yes No Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No Yes No No No No No No Yes No No No No Yes No No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No Yes No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 51 to 100 41 to 50 41 to 50 Have not spent anything Have not spent anything 1 to 10 11 to 20 11 to 20 About once a month (12) 11 to 20 11 to 20 11 to 20 11 to 20 100% 25% to 49% None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 20 to 30 11 to 20 1 to 10 11 to 20 41 to 50 21 to 30 11 to 20 1 to 10 11 to 20 11 to 20 75% to 99% 1 to 10 1% to 24% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Don't know Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Don't know Yes Yes Yes No No No No Yes No No No No Yes No No Yes Yes No Yes No No No No Yes No No No No No Yes No No No Yes Yes No No No No Yes Yes No No No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Part time Any Yes No Yes No No Yes No 3 3 Yes No No Phone Scotland Scotland North White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 23 7300 5000 0 0 800 1500 0 0 0 0 0 0 2400 900 0 1500 0 0 0 500 0 0 500 1200 1200 0 14 0 0 4 1 3 14 0 0 0 0 0 0 0 0 0 1 0 14 0 0 0 1 0 14 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 4 0 3 100 35.7142868 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 10900 2700 1300 500 1400 5000 22 14 1 15 14 93.3333359 23.8095245 0 0 1 1 100 100 0 7 3 14.8424444 14.8424444 4975 Yes No Yes No No No No Yes Yes Yes No No No No No No No Yes No No Yes Yes No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% 1 to 10 None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England East of England Midlands Any other Minority Ethnic No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 2 0 0 0 0 0 2 2 100 100 1 0 0 3.18014598 3.18014598 89 Yes No Yes No No Yes No No Yes No No Yes No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No Yes No No No Yes Yes No No No No Yes Yes No Yes No Yes Yes No No No No No Yes No No No No Yes No No No No No Yes No No No Yes Yes No No No No Yes Yes No No No Yes Yes No No No No No Yes No No No No Yes No No No No Yes No Yes No No No No No Yes No Yes Yes No No No No Yes No Yes No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 50% to 74% None None 50% to 74% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% None None 1 to 10 1% to 24% None None None 1% to 24% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No Yes Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No Yes No Yes Yes No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England London South White British White No Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 14 500 0 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 14 0 0 0 0 0 7 0 10 0 0 0 7 0 10 0 0 0 14 0 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 50 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 500 0 0 0 24 7 17 24 5 20.833334 0 5 20.833334 19 0 20.833334 0 0 0 0 2.60827494 2.60827494 90 Yes No Yes No No Yes Yes No No Yes No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 1 to 10 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 1 to 10 31 to 40 1 to 10 None None Strongly disagree (-4) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 21 4000 4000 0 0 0 0 0 0 0 0 0 0 4000 1000 3000 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8000 3000 0 0 1000 4000 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3 5 14.6100512 14.6100512 4982 Yes No No No No Yes No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes No No Yes Yes No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes Yes Yes No No Yes Yes No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) About once a month (12) 11 to 20 11 to 20 11 to 20 None None None None None None None 501 to 1000 1 to 10 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None 21 to 30 100% 21 to 30 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 51 to 100 51 to 100 None None None None 31 to 40 50% to 74% 31 to 40 50% to 74% 31 to 40 50% to 74% 1 to 10 None Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South East South White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Kids 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 2000 0 0 0 0 20 3 0 0 30 0 0 0 0 0 0 0 20 3 0 0 30 0 20 3 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 30 0 0 0 3 0 0 30 0 1000 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 0 2000 2000 0 0 0 0 53 0 53 53 0 0 0 33 62.2641525 53 33 62.2641525 62.2641525 5 0 0 2.60827494 2.60827494 91 Yes No No No No Yes No No Yes Yes Yes No No Yes No No No No No No No No Yes No Yes No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes No No No No No No No No Yes No No No Yes Yes Yes No No No No Yes Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No No Yes No No No Yes No No No Yes No No No No No No No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) About once a week (52) 11 to 20 1 to 10 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 1 to 10 1 to 10 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 41 to 50 31 to 40 1 to 10 Have not spent anything 1 to 10 1 to 10 21 to 30 1 to 10 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% 1 to 10 1 to 10 Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes Yes No No Yes Yes Yes No No No No No No Yes Yes No Yes Yes No No No Yes Yes No No No No No No No No Yes Yes Yes No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Kids 15 800 0 500 0 300 0 1000 1000 0 0 0 0 2255 700 555 1000 0 0 0 1000 0 1000 0 500 500 0 20 2 0 2 0 1 8 0 0 0 0 0 12 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 3 3 3 0 0 0 0 0 0 2 0 2 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 3500 300 0 700 500 25 8 12 20 0 0 0 0 0 20 20 100 100 3 5 0 2.9604094 2.9604094 92 Yes Yes No No Yes Yes No No Yes Yes Yes Yes No Yes Yes No No No No No No No No No Yes No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No Yes No Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes Yes No 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 3 3 About once a month (12) 2-3 times a week (130) 51 to 100 11 to 20 51 to 100 51 to 100 51 to 100 100% 50% to 74% None None 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 41 to 50 11 to 20 1 to 10 1 to 10 21 to 30 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 1 to 10 20 to 30 Have not spent anything Less often (6) 2-3 times a week (130) 51 to 100 1 to 10 41 to 50 51 to 100 None None None None None 31 to 40 50% to 74% 50% to 74% 1 to 10 11 to 20 1 to 10 1 to 10 About once a week (52) About once a week (52) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 11 to 20 1 to 10 1 to 10 Have not spent anything 101 to 200 21 to 30 101 to 200 101 to 200 101 to 200 50% to 74% 41 to 50 25% to 49% None None 31 to 40 50% to 74% 31 to 40 75% to 99% None 11 to 20 Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes No No No No Yes No No No No No Yes Yes Yes Yes Yes Yes No No Yes No Yes No No No No Yes Yes Yes Yes Yes No Yes Yes No No No Yes Yes No No No No No No No Yes Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No Yes No No No No No No Yes No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 3 3 Yes No No Phone Urban England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 22 3799 0 0 0 1000 2997 0 0 0 0 0 0 4100 600 500 3000 0 0 0 3500 500 3000 0 1500 500 1000 95 2 1 6 56 12 15 0 0 0 1 6 80 2 1 1 50 1 95 2 1 1 51 7 95 0 1 0 0 7 50 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 35 0 0 0 0 0 0 0 0 0 0 0 0 5 5 5 100 52.6315804 0 0 100 0 0 0 100 100 100 0 0 0 100 0 0 0 0 100 100 0 0 0 68.627449 68.627449 100 0 0 0 100 10099 6500 2000 999 600 0 172 22 135 157 103 65.6050949 42.3728828 0 0 54 38 89.8089142 70.370369 0 15 3 16.0742931 16.0742931 4984 Yes No No No No Yes No No Yes No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 21 to 30 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes Yes No Yes No No Yes Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No Yes No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England North East North No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 13 0 0 0 0 0 0 2800 2800 0 2800 2800 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 20 1 1 0 5 0 0 0 0 0 0 0 20 0 0 0 5 0 20 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 5 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 7100 5600 0 0 1500 0 27 0 25 25 0 0 0 0 0 25 25 100 100 0 2 0 3.06790113 3.06790113 93 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Very confident (4) No No No No No No No No Yes No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time Any Yes No Yes No Yes No Yes 5+ 5+ Yes No No Phone Urban Wales Wales Midlands Bangladeshi Minority Ethnic Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 4 0 0 1 0 6 4 0 0 0 0 0 0 0 0 1 0 0 4 0 0 1 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 11 4 1 5 4 80 0 0 0 1 1 100 100 0 6 5 9.84904194 9.84904194 4992 Yes Yes Yes Yes No Yes No No No Yes No Yes No Yes Yes No No No No No Yes No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 21 to 30 21 to 30 21 to 30 None None None None None None None Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 21 to 30 21 to 30 21 to 30 None None 1 to 10 1% to 24% None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 51 to 100 51 to 100 None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% None None Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Slightly disagree (-2) Strongly disagree (-4) Slightly agree (2) Yes No Yes No Yes No No Yes Yes No No No No No No No Yes Yes No No Yes Yes No Yes No Yes Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes Yes Yes Yes Yes No No No No No No No Yes Yes No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 2 2 No Yes No Phone Urban England London South Any other mixed background Minority Ethnic Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 1 1 3 30 0 0 0 0 0 0 0 30 1 1 3 30 0 30 1 1 3 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 3.33333325 0 0 0 0 0 0 0 0 0 0 0 0 0 65 0 65 65 0 0 0 1 1.53846157 65 1 1.53846157 1.53846157 0 0 2 12.5739346 12.5739346 4996 No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Several times a day (730) No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No Yes No No No No Yes No No No No No No 51 to 100 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 3 3 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 1 to 10 1 to 10 2-3 times a week (130) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 100% 75% to 99% 1 to 10 100% 100% 1 to 10 1 to 10 21 to 30 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 100+ 1 to 10 51 to 100 Have not spent anything 1 to 10 1% to 24% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 100+ 100+ 11 to 20 1 to 10 1 to 10 11 to 20 31 to 40 1 to 10 1 to 10 11 to 20 11 to 20 100% 21 to 30 50% to 74% 11 to 20 100% None 100% 1 to 10 21 to 30 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 5+ 5+ No Yes No Phone Urban England Yorkshire and The Humber North Pakistani Minority Ethnic No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes CAWI Adults 24 7000 1000 1000 1000 1000 3000 1000 1000 0 2000 1000 1000 3000 1000 1000 1000 0 0 0 11000 1000 10000 0 1001 1001 0 2 10 11 1 10 1 0 0 10 0 0 0 1 0 0 0 0 0 1 0 10 0 0 0 1 0 10 0 0 0 1 10 10 1 1 1 1 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 1 10 1 1 10 1 100 50 100 0 100 0 100 0 0 0 100 90.9090881 100 0 100 0 100 0 0 0 0 0 10 0 0 0 0 100 0 0 0 21001 15001 2000 1000 1000 2000 35 10 1 11 11 100 68.5714264 11 100 0 0 100 0 10 24 5 11.7109346 11.7109346 5003 Yes No No No No Yes No No Yes Yes Yes Yes No Yes Yes Yes No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No 100+ 41 to 50 41 to 50 Have not spent anything Have not spent anything 11 to 20 41 to 50 41 to 50 About once a week (52) 21 to 30 21 to 30 21 to 30 21 to 30 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 11 to 20 11 to 20 11 to 20 Have not spent anything 41 to 50 21 to 30 21 to 30 21 to 30 21 to 30 100% None None None None None 100% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) No Yes Yes Yes No Yes Yes No No No No No No No No No Yes Yes Yes Yes Yes Yes No Yes No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking Any Yes No No No Yes No Yes 3 3 No Yes No Phone Urban England South East South White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 24 10250 4250 0 0 1500 4500 0 0 0 0 0 0 1000 0 0 1000 0 0 0 0 0 0 0 400 400 0 23 0 0 3 0 1 23 0 0 0 0 0 0 0 0 0 0 0 23 0 0 0 0 0 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 1 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8650 1400 1500 1500 0 4250 27 23 0 23 23 100 0 0 0 0 0 100 0 0 4 3 10.8361282 10.8361282 5014 Yes Yes Yes Yes No Yes No No No Yes No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No Yes Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No Yes No No No Yes No No No No No No No 100+ 100+ 100+ Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) Most days (365) About once a month (12) 51 to 100 1 to 10 41 to 50 51 to 100 1 to 10 1% to 24% 100% 11 to 20 25% to 49% 41 to 50 100% 100% 501 to 1000 1 to 10 1 to 10 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% 1 to 10 25% to 49% None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 1 to 10 Have not spent anything Have not spent anything 100+ 51 to 100 1 to 10 51 to 100 51 to 100 1 to 10 1% to 24% 1 to 10 50% to 74% 21 to 30 25% to 49% 51 to 100 75% to 99% 51 to 100 75% to 99% 1 to 10 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes Yes No No No No Yes No No No No No Yes Yes No No No Yes No No Yes No No No No No No Yes Yes Yes Yes Yes Yes No Yes No No No No Yes No No No No No Yes No No No No Yes No No No No Yes Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No No No Yes No No No Yes Yes No No No No No Very confident (4) No No No No No No No No No No No No No No Yes No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 1 1 No Yes No Phone Rural Scotland Scotland North White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 22 13500 12500 0 0 1000 0 5000 5000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 4 0 3 2 0 10 0 0 0 0 0 50 0 0 3 2 0 60 0 0 3 2 0 10 0 0 0 0 0 10 0 0 0 0 0 20 0 0 2 0 0 1 50 0 0 0 2 0 1000 2 2 0 0 0 0 0 0 4 0 0 0 0 16.666666 100 33.3333321 100 100 0 0 0 0 0 0 0 0 0 0 0 0 66.6666641 33.3333321 0 0 0 0 0 100 100 0 0 0 0 0 18500 5000 1000 0 0 12500 69 10 55 65 10 15.3846149 71.4285736 22 33.8461533 55 52 95.384613 94.5454559 2 4 1 14.2901106 14.2901106 5017 Yes No No Yes No No No No No Yes No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything None None None Strongly agree (4) Neither agree nor disagree (0) Don't know Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No Yes No No No No No No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South East South White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 0 0 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.60827494 2.60827494 94 Yes No No No No Yes Yes No Yes Yes No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No No Yes Yes Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 11 to 20 1 to 10 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 25% to 49% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes Yes No No No No Yes No No No Yes No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Married\\Living as Married Working Full time Any Yes No Yes No No No Yes 3 3 No Yes No Phone Urban Wales Wales Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 500 0 0 0 0 0 0 0 2500 1500 1000 0 0 0 2 6 8 0 0 0 0 0 0 0 0 0 0 6 2 0 0 0 0 6 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 3000 2000 1000 0 0 0 16 0 8 8 2 25 0 0 0 6 6 100 100 0 8 3 11.4285479 11.4285479 5031 Yes No Yes No No Yes No No Yes Yes Yes Yes No Yes No Yes No No No No No No No No No No No No Yes Yes No Yes Yes No Yes Yes No No No No No No Several times a day (730) Yes No Yes Yes No Yes No Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No Yes No Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No Yes No No No No No No 100+ 100+ 100+ 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 51 to 100 41 to 50 41 to 50 Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 201 to 500 1 to 10 101 to 200 201 to 500 None None None None 201 to 500 100% 100% 11 to 20 11 to 20 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 51 to 100 Have not spent anything 11 to 20 100+ 201 to 500 21 to 30 101 to 200 201 to 500 21 to 30 1% to 24% None None None None 201 to 500 100% 201 to 500 100% None 1 to 10 Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Don't know Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes Yes Yes No Yes Yes No Yes No No No No No No No Yes Yes Yes Yes Yes No No Yes Yes No No No No Yes Yes Yes Yes Yes No Yes No No No No No Yes Yes No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No Yes No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 4 4 No No Yes Phone Urban England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 20 17000 15000 1500 0 500 0 10000 5000 5000 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 2000 1500 500 5 13 1 0 203 6 5 12 1 0 3 3 0 0 0 0 200 0 5 12 1 0 203 3 5 12 1 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 203 0 0 0 0 0 0 0 0 0 0 1 0 0 0 3 100 0 0 0 100 100 0 0 0 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 30500 6500 6000 0 1500 16500 228 24 200 224 21 9.375 0 0 0 203 203 100 100 0 4 4 16.0742931 16.0742931 5038 Yes No Yes No No Yes No No Yes No No No No Yes No Yes No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes Yes Yes No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes Yes Yes No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Don't know Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No Yes No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England East Midlands Midlands White Irish White No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 3 0 0 0 0 0 0 0 0 0 2 1 3 0 0 0 2 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 6 6 0 0 0 0 0 6 6 100 100 0 0 0 3.06872106 3.06872106 95 Yes Yes Yes No No Yes No No No Yes No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes No No Yes Yes No No No Yes Yes Yes No Yes Yes Yes Yes No No No Yes Yes No No No No Yes No No No No Yes Yes Yes Yes No No Yes Yes No No No Yes Yes Yes No No Yes Yes No No No No Yes Yes No No No No Yes No No No No Yes No Yes No No No No No Yes No Yes No No No No No Yes No Yes No No Yes No No 41 to 50 1 to 10 1 to 10 Have not spent anything 1 to 10 3 Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) Every 2-3 weeks (30) 101 to 200 21 to 30 51 to 100 51 to 100 51 to 100 50% to 74% 25% to 49% 21 to 30 25% to 49% 11 to 20 50% to 74% 75% to 99% 1001+ 1 to 10 1 to 10 11 to 20 Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) 51 to 100 20 to 30 31 to 40 Less often (6) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 31 to 40 31 to 40 31 to 40 None None None None 31 to 40 100% 100% 41 to 50 41 to 50 Have not spent anything About once a month (12) 21 to 30 1 to 10 1 to 10 None None None None None None None None 11 to 20 Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 51 to 100 Have not spent anything 1 to 10 1 to 10 101 to 200 31 to 40 101 to 200 101 to 200 51 to 100 25% to 49% 21 to 30 1% to 24% 21 to 30 1% to 24% 51 to 100 75% to 99% 51 to 100 75% to 99% 1 to 10 41 to 50 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes Yes No No Yes No Yes Yes No No No No No Yes No Yes Yes No No Yes No No No No No No No No Yes Yes Yes Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No No No Yes Yes Yes No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time Any Yes No No No Yes Yes No 4 4 No Yes No Phone Urban England South West South White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 21 4400 900 0 1000 2500 0 6505 2505 4000 0 0 0 750 750 0 0 0 0 0 0 0 0 0 5000 5000 0 107 10 1 0 40 25 27 1 1 0 0 5 60 3 0 0 40 0 87 4 1 0 40 5 60 4 0 0 0 0 25 0 0 0 0 0 27 0 0 0 0 0 0 20 0 1 0 40 0 5000 10 10 0 0 0 0 0 20 6 0 0 0 20 68.9655151 31.25 31.034483 74.0740738 91.9540253 100 0 0 0 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 16655 8505 6500 0 750 900 183 34 103 137 64 46.7153282 22.727272 27 19.7080288 73 61 91.2408752 83.5616455 10 46 4 16.0742931 16.0742931 5043 Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything Have not spent anything Have not spent anything 41 to 50 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Urban England East Midlands Midlands Caribbean Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 22 0 0 0 0 0 0 0 0 0 0 0 0 5000 0 0 5000 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 9.84904194 9.84904194 5049 Yes No Yes No No No No No Yes Yes No Yes No Yes No No No No No Yes Yes No No No No No No No No No No Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 31 to 40 1 to 10 Have not spent anything 1 to 10 1 to 10 11 to 20 Have not spent anything Have not spent anything Less often (6) 31 to 40 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% None None None None 50% to 74% 21 to 30 Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 50% to 74% 1 to 10 51 to 100 31 to 40 11 to 20 Have not spent anything Have not spent anything 1 to 10 31 to 40 1 to 10 1 to 10 1 to 10 50% to 74% 21 to 30 50% to 74% None None None None None 50% to 74% None 31 to 40 Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No Yes No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England North West North Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 12 4000 0 1000 1000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 32 0 0 0 0 4 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 0 20 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 4 50 64.5161285 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 6500 3500 2000 0 0 1000 36 2 0 2 1 50 62.8571434 0 0 1 0 50 0 0 34 0 3.06790113 3.06790113 96 Yes No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 25% to 49% 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No Yes No No No No No No Yes No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Urban England East of England Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 350 350 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 2 1 4 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 100 100 0 0 100 100 100 0 0 0 0 0 2850 2500 0 0 350 0 7 0 3 3 0 0 0 1 33.3333321 3 3 100 100 0 4 4 11.4285479 11.4285479 5050 Yes Yes Yes No No Yes No No No No No No No Yes Yes Yes No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes No No Yes No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No Yes No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 101 to 200 51 to 100 51 to 100 None None 1% to 24% None None None None None 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 21 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 101 to 200 51 to 100 51 to 100 None None 1 to 10 1% to 24% None None None None None None None 11 to 20 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) No Yes No Yes No No No No Yes No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Kids 12 1000 0 0 1000 0 0 3000 3000 0 330 330 0 2250 750 0 1500 0 0 0 1500 0 1500 0 500 500 0 110 2 1 3 0 2 100 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2 1 3 0 2 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8580 7830 0 0 750 0 118 100 0 100 0 0 11.1111107 0 0 100 0 0 0 0 18 0 3.18014598 3.18014598 97 Yes No Yes Yes No Yes Yes No Yes Yes No No No Yes No Yes No Yes No No No No Yes No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes No No Yes No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes No No No No Yes No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No Yes No No 51 to 100 51 to 100 41 to 50 11 to 20 Have not spent anything 3 1 to 10 1 to 10 Every 2-3 weeks (30) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% None None None 100% Likely (3) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 21 to 30 11 to 20 21 to 30 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 20 to 30 1 to 10 20 to 30 51 to 100 31 to 40 1 to 10 21 to 30 31 to 40 21 to 30 50% to 74% None None None None None None None 50% to 74% None 1 to 10 Slightly disagree (-2) Strongly disagree (-4) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 5+ 5+ Yes Yes No Phone England North West North Indian Minority Ethnic Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 9850 5000 1500 0 3000 450 6000 6000 0 0 0 0 7500 3000 2000 2500 0 0 0 0 0 0 0 2000 2000 0 12 2 0 13 10 3 6 0 0 0 0 0 6 0 0 10 10 0 12 0 0 10 10 0 12 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 3 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 23150 10500 3000 150 3000 6500 40 6 26 32 22 68.75 0 0 0 10 0 68.75 0 0 8 5 14.413929 14.413929 5051 Yes Yes No No No Yes Yes No No Yes No Yes No Yes Yes No No No No Yes Yes No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No Yes Yes No No Yes No No No No No Yes Yes Yes Yes No Yes Yes No No No No No Yes Yes Yes No Yes No No No No No No Yes Yes No No No No No No No No No Yes Yes No No Yes No No No No No No Yes No No No Yes No No No No No No Yes No No No No No No No Yes No No No No Yes No Yes No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything 20 to 30 About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None None None 25% to 49% 51 to 100 51 to 100 Have not spent anything 1 to 10 50% to 74% 1 to 10 51 to 100 41 to 50 41 to 50 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 1 to 10 25% to 49% 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything About once a week (52) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 1 to 10 1% to 24% None None None 1 to 10 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 20 to 30 Have not spent anything 41 to 50 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% None None None 1% to 24% 1 to 10 1 to 10 Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Yes Yes Yes No No No No No No No No No No No Yes No No No No No No Yes No No Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No No Yes Yes No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Part time Any Yes No No No Yes Yes No 2 2 Yes Yes No Phone Urban England London South Indian Minority Ethnic No Yes No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 2999 0 2999 5099 5099 0 6658 4059 0 2000 0 0 599 1299 0 1299 0 2099 2099 0 0 3 2 3 6 3 0 1 0 0 0 0 0 2 0 0 6 0 0 3 0 0 6 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 3 0 3 0 0 0 0 0 33.3333321 0 0 0 33.3333321 0 50 0 0 0 0 33.3333321 0 0 0 0 0 0 16.666666 0 0 0 0 0 0 0 18154 10497 2999 0 4658 0 17 1 8 9 1 11.1111107 22.2222214 1 11.1111107 8 0 11.1111107 0 2 8 2 15.476119 15.476119 5052 Yes Yes Yes No No Yes No No No No No Yes No Yes No No No Yes Yes No Yes No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes No No Yes Yes No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 1 to 10 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 75% to 99% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 None None 1 to 10 75% to 99% None None None None None None 1 to 10 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 1 1 Yes Yes No Phone Urban Wales Wales Midlands White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 23 0 0 0 0 0 0 289 289 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 10 3 0 0 0 3 0 3 0 0 0 1 0 0 0 0 0 4 0 3 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 289 289 0 0 0 0 17 6 1 7 0 0 80 0 0 7 0 0 0 1 10 1 11.4285479 11.4285479 5070 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No Yes No Yes No No Yes No No No No No No Yes No No Yes No Yes No No Yes Yes No No No No No Once a day (365) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything None None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Neither agree nor disagree (0) No No No Yes No No No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England London South No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 0 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.60827494 2.60827494 98 Yes No Yes No No Yes No No No No No Yes No Yes No No No Yes Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No Yes No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No 3 3 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 100% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 20 to 30 20 to 30 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 50% to 74% 1 to 10 11 to 20 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 41 to 50 Have not spent anything Have not spent anything 11 to 20 20 to 30 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 1 to 10 75% to 99% 1 to 10 50% to 74% 1 to 10 100% 1 to 10 100% 1 to 10 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Yes Yes No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England North West North White British White No Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 3000 3000 0 0 0 0 2500 2500 0 1000 1000 0 1100 750 0 0 0 0 350 0 0 0 0 1050 1050 0 4 1 2 0 0 1 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 2 0 0 0 0 0 2 1 1 0 0 1 2 0 0 0 0 0 0 2 0 0 0 0 0 2 2 2 0 0 0 0 0 0 1 2 0 0 1 50 100 50 100 100 0 100 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 8650 4550 0 0 1100 3000 8 0 4 4 2 50 83.3333359 2 50 2 2 100 100 2 4 0 3.06790113 3.06790113 99 Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No Yes No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 31 to 40 1 to 10 21 to 30 31 to 40 1 to 10 1% to 24% None 21 to 30 75% to 99% 21 to 30 100% 100% Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None None None 100% Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None 51 to 100 50% to 74% 1 to 10 1% to 24% 1% to 24% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 101 to 200 1 to 10 101 to 200 101 to 200 21 to 30 1% to 24% None None 51 to 100 50% to 74% 31 to 40 25% to 49% 31 to 40 25% to 49% None 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) No Yes No Yes No No No No No No No No No No No Yes Yes No No No No No Yes No No No No No Yes No Yes No Yes No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No Yes Yes No No No No No No Very confident (4) No No No No No No No No No No No No No No Yes Yes No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Working Full time Any Yes No Yes No No Yes No 4 4 Yes No No Phone Rural England East of England Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 24 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 2000 2000 0 35 0 0 20 100 5 5 0 0 0 0 0 30 0 0 20 100 0 35 0 0 20 100 0 7 0 0 20 0 0 0 0 0 0 0 0 28 0 0 0 60 0 0 28 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 20 0 80 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 60 5 5 0 0 0 0 0 3500 2000 0 0 1500 0 160 5 150 155 27 17.4193554 0 88 56.7741928 128 33 38.7096786 25.78125 0 5 4 11.4285479 11.4285479 5072 Yes No Yes No No Yes No No Yes Yes Yes Yes No Yes No No No No No Yes Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No Yes No No No No No No No No No Yes Yes No No No Yes No No No No No Yes Yes No No No No Yes No No No No No Yes No No No No No No No No No Yes Yes No No No Yes No No No No No Yes Yes No No No No Yes No No No No No No Yes No No No No No No No Yes Yes No No No No No No Yes No No No No No 41 to 50 3 11 to 20 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything About once a month (12) Every 2-3 weeks (30) 21 to 30 11 to 20 11 to 20 None None 100% 1 to 10 1% to 24% 11 to 20 100% 100% 51 to 100 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 31 to 40 21 to 30 21 to 30 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 Most days (365) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 1 to 10 Have not spent anything 31 to 40 20 to 30 101 to 200 101 to 200 101 to 200 None None 1 to 10 75% to 99% 1 to 10 1% to 24% 101 to 200 100% 101 to 200 100% 1 to 10 11 to 20 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No No No No No Yes No Yes No No Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South West South White British White No Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No No No Yes CAWI Kids 15 4800 2000 1000 1500 300 0 0 0 0 3000 3000 0 4000 3000 0 1000 0 0 0 500 0 0 500 0 0 0 22 0 1 1 100 0 0 0 0 0 0 0 12 0 0 0 100 0 12 0 0 0 100 0 0 0 0 0 0 0 10 0 0 0 0 0 2 0 0 0 0 0 0 12 0 0 0 100 0 100 10 10 0 0 0 0 0 10 0 1 1 0 0 0 100 16.666666 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 12800 5500 800 0 3500 3000 124 0 112 112 0 0 83.3333359 2 1.78571427 112 112 100 100 10 12 0 2.70298147 2.70298147 100 Yes No Yes Yes No Yes No No No No No No No Yes Yes No No No No Yes Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No Yes Yes Yes No No No No Yes No Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No Yes No No No Yes Yes No No Yes No 51 to 100 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything 3 3 Most days (365) Most days (365) 501 to 1000 51 to 100 201 to 500 501 to 1000 201 to 500 50% to 74% 75% to 99% 101 to 200 25% to 49% 101 to 200 100% 100% 21 to 30 Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 1 to 10 2-3 times a week (130) 2-3 times a week (130) 21 to 30 1 to 10 1 to 10 11 to 20 11 to 20 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything About once a week (52) About once a week (52) 31 to 40 11 to 20 11 to 20 31 to 40 21 to 30 75% to 99% None 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 31 to 40 Have not spent anything 11 to 20 11 to 20 2-3 times a week (130) 2-3 times a week (130) 21 to 30 11 to 20 11 to 20 21 to 30 21 to 30 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 20 to 30 11 to 20 31 to 40 11 to 20 501 to 1000 101 to 200 501 to 1000 501 to 1000 201 to 500 50% to 74% 201 to 500 75% to 99% 201 to 500 25% to 49% 201 to 500 100% 201 to 500 100% None 31 to 40 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes No Yes No No Yes No No No No No Yes Yes Yes Yes No Yes Yes Yes Yes No No No No No No Yes Yes No Yes Yes Yes Yes Yes No No No No Yes No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 4 4 Yes Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 23 6000 2000 0 1000 0 3000 6500 6000 500 0 0 0 1700 1200 0 0 0 500 0 4000 0 2000 2000 0 0 0 630 23 0 40 30 0 100 10 0 20 15 0 500 10 0 20 15 0 600 20 0 40 30 0 400 20 0 30 30 0 400 0 0 0 0 0 200 0 0 8 0 0 2 200 0 0 10 0 0 0 0 0 0 0 0 0 0 30 3 0 0 0 0 66.6666641 93.0232544 33.3333321 100 100 100 0 0 0 100 0 0 0 0 0 75 0 20 5 100 100 100 0 0 0 100 0 0 0 0 0 18200 9000 2500 1500 3200 2000 723 145 545 690 480 69.5652161 77.9727097 208 30.144928 210 210 100 100 0 33 4 14.0663652 14.0663652 5074 Yes No No Yes No Yes No No No No No No No Yes No No No Yes Yes No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Once a day (365) Yes No No Yes Yes Yes No No No No No Yes No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No Yes No No Yes No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No Yes No No No No No 100+ 3 Have not spent anything 3 Have not spent anything 11 to 20 51 to 100 51 to 100 Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) 20 to 30 20 to 30 Have not spent anything About once a week (52) 11 to 20 1% to 24% 11 to 20 11 to 20 51 to 100 21 to 30 51 to 100 Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 100+ 11 to 20 11 to 20 51 to 100 About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 100+ 31 to 40 51 to 100 20 to 30 21 to 30 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 1 to 10 1% to 24% None None None None None 50% to 74% 11 to 20 11 to 20 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) No No No No No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Working Part time None No Yes No No No No No 5+ 5+ Yes Yes No Phone Urban Northern Ireland Northern Ireland North White Irish White Yes Yes No No No Yes No Yes No No Yes Yes No No Yes Yes No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 12899 0 2300 0 1299 9300 2700 2700 0 8499 2500 5999 1600 300 300 600 0 0 400 10900 1200 1600 8100 1200 1200 0 1 14 5 1 2 1 0 0 0 0 1 0 1 0 3 0 0 0 1 0 3 0 1 0 0 0 3 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 14 2 1 1 1 0 0 0 0 0 0 7.14285707 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38198 8600 15398 3100 8800 2300 24 1 4 5 3 60 4.5454545 0 0 2 0 60 0 15 19 5 8.94357586 8.94357586 5076 Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No No Yes No No Yes Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes Yes Yes Yes Yes No 100+ 100+ 100+ Have not spent anything 41 to 50 11 to 20 Have not spent anything Have not spent anything Most days (365) 2-3 times a week (130) 2-3 times a week (130) 41 to 50 21 to 30 21 to 30 41 to 50 1 to 10 1% to 24% 25% to 49% 1 to 10 1% to 24% 1 to 10 1% to 24% 1% to 24% 11 to 20 11 to 20 11 to 20 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 1 to 10 Less often (6) About once a month (12) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 25% to 49% 1 to 10 1% to 24% 1 to 10 50% to 74% 75% to 99% 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 About once a month (12) About once a week (52) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 100+ 100+ 51 to 100 41 to 50 31 to 40 1 to 10 Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) Don't know 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 1 to 10 1 to 10 1 to 10 1 to 10 Every 2-3 weeks (30) About once a week (52) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 About once a month (12) Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 100+ 100+ 31 to 40 Have not spent anything 51 to 100 100+ 51 to 100 21 to 30 21 to 30 51 to 100 11 to 20 25% to 49% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 25% to 49% 11 to 20 1 to 10 Don't know Don't know Neither agree nor disagree (0) Don't know Strongly disagree (-4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No Yes Yes No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Married\\Living as Married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone Urban England South West South White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 23 56500 50000 0 5000 1500 0 1200 1100 100 200 100 100 16545 7045 4500 4000 1000 0 0 722 322 200 200 580 230 350 47 8 3 3 3 3 23 3 1 1 1 1 23 2 1 1 1 1 46 5 2 2 2 2 9 2 1 1 1 1 3 2 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 12 11 11 1 1 1 1 1 1 3 1 1 1 1 19.565218 30 4.347826 2.70270276 21.73913 40 40 20 66.6666641 80 50 50 50 100 100 50 50 50 50 100 100 50 50 50 100 100 50 50 50 100 100 71125 10630 3250 0 7245 50000 67 30 29 59 15 25.4237289 39.1304359 7 11.8644066 44 7 37.2881355 15.909091 16 8 2 15.476119 15.476119 5077 Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No Several times a day (730) Yes No Yes No No No No No No No No Yes Yes Yes No No No No No No No No Yes No Yes No No No No No No No No Yes No Yes No No No No No No No No Yes Yes Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 31 to 40 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 3 3 Most days (365) Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 11 to 20 11 to 20 Have not spent anything Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 31 to 40 21 to 30 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 41 to 50 20 to 30 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 1 to 10 20 to 30 1 to 10 21 to 30 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% 1 to 10 11 to 20 Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban Scotland Scotland North Any other Black Minority Ethnic Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Kids 12 4000 200 300 300 200 3000 2000 2000 0 1000 1000 0 6000 3000 1000 2000 0 0 0 5000 3000 2000 0 1000 1000 0 6 9 1 3 3 6 2 2 0 0 0 0 2 4 0 0 0 0 4 6 0 0 0 0 0 2 0 0 0 0 2 0 1 3 3 0 0 2 0 0 0 0 0 4 4 0 0 0 0 2 2 2 0 0 0 0 0 2 3 1 3 3 6 0 100 0 100 100 33.3333321 0 33.3333321 100 100 0 100 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 0 0 0 0 13000 8300 200 1000 3000 500 28 4 6 10 2 20 45 2 20 8 8 100 100 2 18 0 4.43454361 4.43454361 101 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No Yes Yes No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban Scotland Scotland North No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 0 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.43454361 4.43454361 102 Yes No Yes Yes No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No Yes No 100+ 51 to 100 51 to 100 3 Have not spent anything 11 to 20 Have not spent anything Have not spent anything About once a month (12) Less often (6) 51 to 100 31 to 40 31 to 40 51 to 100 51 to 100 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 11 to 20 Have not spent anything 1 to 10 11 to 20 1 to 10 21 to 30 About once a week (52) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) 11 to 20 Have not spent anything Have not spent anything 11 to 20 About once a week (52) 11 to 20 11 to 20 11 to 20 1 to 10 25% to 49% None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 1 to 10 51 to 100 1 to 10 51 to 100 51 to 100 101 to 200 41 to 50 51 to 100 51 to 100 51 to 100 75% to 99% None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Yes Yes Yes Yes No Yes No Yes No No No No No Yes Yes Yes Yes Yes Yes No No No Yes Yes No No No No Yes Yes Yes Yes Yes No Yes Yes No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No Yes No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking Any Yes No Yes No No Yes Yes 5+ 5+ Yes No No Phone Rural England East Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 24 10500 6000 2500 0 2000 0 0 0 0 0 0 0 7300 2000 0 1000 1500 600 2200 1700 0 0 1700 0 0 0 72 0 0 17 12 0 36 0 0 7 0 0 36 0 0 3 12 0 72 0 0 10 12 0 72 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 10 8 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 20 100 100 33.3333321 0 0 100 100 0 0 0 0 0 21200 1000 5200 600 5900 8500 101 43 51 94 76 80.8510666 0 0 0 18 18 100 100 0 7 5 14.6100512 14.6100512 5082 Yes No No No No No No No Yes No No No No Yes No Yes No No Yes No No No No No No No No Yes No No No Yes Yes No No No No No No No No No Several times a day (730) Yes No Yes Yes No No Yes Yes No No No Yes Yes Yes No Yes Yes Yes Yes No No No Yes No No No No No No No No No No Yes No Yes No No No Yes No No No No Yes Yes No No Yes Yes Yes No No No No Yes No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No 51 to 100 41 to 50 3 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a week (52) Less often (6) 51 to 100 11 to 20 31 to 40 51 to 100 None None None None None 51 to 100 100% 100% 1001+ 1 to 10 1 to 10 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 50% to 74% None None None None None None None 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 20 to 30 Have not spent anything Have not spent anything 1 to 10 41 to 50 51 to 100 21 to 30 41 to 50 51 to 100 None None 1 to 10 1% to 24% 1 to 10 1% to 24% 51 to 100 75% to 99% 51 to 100 75% to 99% 1 to 10 11 to 20 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes No Yes No No No No No No No No No Yes Yes Yes Yes Yes No Yes Yes No No No No Yes No No No No No Yes No No No No Yes No No No No Yes Yes Yes Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No Yes No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Northern Ireland Northern Ireland North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 20 5500 3000 1500 1000 0 0 0 0 0 0 0 0 1800 300 0 1500 0 0 0 0 0 0 0 0 0 0 70 1 0 8 3 0 20 1 0 0 0 0 40 0 0 3 3 0 60 1 0 3 3 0 0 0 0 0 0 0 0 0 0 3 0 0 0 1 0 0 0 0 0 60 0 0 0 3 0 5000 5 5 0 0 0 0 0 10 0 0 5 0 0 0 0 0 100 100 0 0 100 0 0 0 0 0 0 0 0 60 0 0 0 0 0 0 0 100 100 0 0 0 0 0 7300 2500 0 0 300 4500 82 21 46 67 0 0 20 1 1.49253726 67 63 94.0298538 94.0298538 5 15 4 11.0078382 11.0078382 5084 Yes No No No Yes Yes Yes No No Yes No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes Yes No No No No No No No No Several times a day (730) Yes No Yes Yes No Yes Yes Yes No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No Yes Yes Yes No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes Yes No Yes Yes No Yes No Yes Yes No Yes Yes No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything Have not spent anything About once a week (52) Most days (365) 501 to 1000 51 to 100 201 to 500 501 to 1000 51 to 100 1% to 24% 100% None None 201 to 500 100% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) 20 to 30 1 to 10 11 to 20 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 31 to 40 Have not spent anything 31 to 40 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 41 to 50 75% to 99% 1% to 24% 1 to 10 1% to 24% 1 to 10 100% 100% 31 to 40 11 to 20 Have not spent anything 11 to 20 Have not spent anything 1 to 10 11 to 20 Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very Unlikely (1) 11 to 20 Have not spent anything Have not spent anything 11 to 20 About once a month (12) Most days (365) 101 to 200 21 to 30 51 to 100 101 to 200 101 to 200 100% 100% None None 100% 41 to 50 21 to 30 11 to 20 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 51 to 100 11 to 20 11 to 20 Have not spent anything 501 to 1000 101 to 200 501 to 1000 501 to 1000 201 to 500 25% to 49% 101 to 200 75% to 99% 1 to 10 None 501 to 1000 100% 501 to 1000 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No No Yes Yes No Yes Yes No No No No Yes Yes No Yes No Yes Yes No No No No No No No No Yes Yes No Yes Yes Yes No No No No No No Yes No No No No No Not particularly confident (2) No Yes No No No No No No No No No No Yes No No No No No No No No Male 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England South West South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes No No No Yes No Yes Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 20 3000 0 0 3000 0 0 2500 1000 1500 3500 0 3500 4000 0 2000 0 500 1500 0 2000 0 0 2000 4500 3000 1500 561 4 50 10 130 10 60 3 50 0 30 5 500 0 0 10 100 0 560 3 50 10 130 5 60 3 47 10 130 5 61 0 5 0 130 0 0 0 3 0 0 0 0 500 0 3 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 5 10.7142859 100 0 100 100 100 0 0 0 100 94 10.638298 6 100 100 100 0 0 0 0 100 100 100 0 0 100 100 0 0 0 100 19500 7000 9000 1500 2000 0 765 148 610 758 255 33.6411591 74.8091583 3 0.395778358 503 503 100 100 0 7 3 15.476119 15.476119 5087 Yes Yes Yes No No Yes No No No No No No No Yes No No No No Yes No Yes No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 31 to 40 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 Have not spent anything 20 to 30 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 31 to 40 Have not spent anything 1 to 10 None None Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 3 3 Yes Yes No Phone England East Midlands Midlands White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 899 899 0 399 399 0 5500 3500 0 2000 0 0 0 3000 0 3000 0 699 699 0 0 1 1 4 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 4 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10497 6997 0 0 3500 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 3 14.6100512 14.6100512 5092 Yes Yes Yes No No No No No Yes Yes No No No Yes No No No Yes No Yes Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No Yes Yes No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes Yes No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 11 to 20 Have not spent anything 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ Have not spent anything Have not spent anything 20 to 30 Have not spent anything 21 to 30 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England Yorkshire and The Humber North No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 12 2500 0 0 2500 0 0 6000 6000 0 0 0 0 4000 2500 0 1500 0 0 0 4000 2000 2000 0 0 0 0 1 3 0 4 13 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 1 3 0 4 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 14500 12000 0 0 2500 0 21 10 0 10 0 0 0 0 0 10 10 100 100 0 11 0 2.9604094 2.9604094 103 Yes No Yes Yes Yes Yes Yes No Yes Yes Yes Yes No Yes No No No No No No Yes No Yes No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes No Yes No Yes Yes No No No No No No No No No Yes No No No No Yes No No Yes Yes Yes Yes Yes No No No Yes Yes No No Yes No Yes Yes No No No No No No No No No Yes No No No No Yes No Yes Yes Yes Yes Yes No Yes No Yes Yes Yes Yes Yes No No No No No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 501 to 1000 51 to 100 201 to 500 501 to 1000 None None 101 to 200 25% to 49% 201 to 500 75% to 99% 75% to 99% Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything 11 to 20 Have not spent anything Less often (6) 2-3 times a week (130) 21 to 30 1 to 10 21 to 30 21 to 30 11 to 20 50% to 74% None 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 100% 100% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 11 to 20 Have not spent anything Have not spent anything 11 to 20 Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None None 51 to 100 51 to 100 1 to 10 Every 2-3 weeks (30) Don't know 41 to 50 11 to 20 1 to 10 21 to 30 1 to 10 1% to 24% None 1 to 10 1% to 24% 1 to 10 1% to 24% 25% to 49% 21 to 30 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 100+ 51 to 100 20 to 30 11 to 20 31 to 40 Have not spent anything 501 to 1000 101 to 200 501 to 1000 501 to 1000 21 to 30 1% to 24% None None 201 to 500 25% to 49% 501 to 1000 75% to 99% 501 to 1000 75% to 99% None 21 to 30 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes No No Yes No No No Yes Yes No No No No No No No No No Yes No No No Yes No No No No No Yes Yes No Yes Yes No Yes Yes No No No No No No No No No No No Yes Yes Yes No No Yes Yes No Yes Yes No Yes No No Yes No No No No No No No No No No No Yes Yes Yes Yes No No No No No Yes No Yes Yes No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No Yes No No No Yes 5+ 5+ No Yes No Phone Rural Wales Wales Midlands White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes No No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 20 0 0 0 0 0 0 1500 1500 0 0 0 0 5300 2000 1500 0 0 1800 0 2000 0 0 2000 7000 6000 1000 600 3 2 27 10 46 100 0 2 2 10 20 500 0 0 25 0 1 600 0 2 27 10 21 0 0 0 19 0 3 0 0 0 0 0 0 200 0 0 8 10 5 5 500 0 2 8 0 4 0 0 0 0 0 0 0 0 0 3 0 0 0 25 0 0 33.3333321 83.3333359 83.3333359 0 0 0 0 0 0 0 0 100 100 70.370369 0 29.6296291 18.5185184 100 100 0 0 100 0 0 14.2857141 0 23.8095245 22.2222214 33.3333321 16300 7500 3000 1800 4000 0 688 134 526 660 22 3.33333325 0 223 33.7878799 638 514 81.2121201 80.5642624 0 28 5 9.84904194 9.84904194 5085 Yes Yes No No No No No No Yes Yes No No No No No No No No Yes No Yes No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 Have not spent anything 11 to 20 None 11 to 20 51 to 100 41 to 50 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 Yes Yes No Phone England London South White Irish White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 20 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 0 0 0 5000 5000 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5500 5000 0 0 500 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 12 2 16.0742931 16.0742931 5086 No No No No No Yes No No No Yes No Yes No Yes No No No No No No Yes No No No No No No No No No Yes No No No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Don't know Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Don't know Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No Yes No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England North East North White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Kids 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.06790113 3.06790113 104 Yes No Yes No No Yes Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No Yes No No No No No No No No No Male 16 to 24 16 to 34 20 to 24 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban England West Midlands Midlands Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 21 0 0 0 0 0 0 0 0 0 0 0 0 1700 1700 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1700 0 0 0 1700 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 11.4285479 11.4285479 5094 Yes Yes No No No Yes No No Yes Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No Several times a day (730) No No No Yes No Yes No Yes No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No Yes Yes Yes Yes Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None 31 to 40 25% to 49% 51 to 100 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 41 to 50 41 to 50 41 to 50 None None None None 1 to 10 1% to 24% 1% to 24% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything 1 to 10 Have not spent anything 11 to 20 Have not spent anything 101 to 200 1 to 10 101 to 200 101 to 200 None None None None 31 to 40 25% to 49% 101 to 200 50% to 74% 101 to 200 50% to 74% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Yes No No Yes No No No No No No No No No No No Yes Yes Yes No Yes No Yes No No No Yes Yes No No No No No No Yes Yes Yes Yes No No Yes Yes Yes No Yes No No No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes No Yes Yes No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 20 to 24 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 3 3 No No Yes Phone Urban England London South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 23 79 0 0 0 79 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 100 0 1 5 50 0 0 0 1 0 0 0 100 0 0 5 50 0 100 0 1 5 50 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 0 0 0 0 100 0 1 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 20 20 0 0 0 0 0 2079 0 79 0 2000 0 156 1 155 156 0 0 0 40 25.6410255 156 111 71.1538467 71.1538467 0 0 3 16.0742931 16.0742931 5095 Yes Yes No No No Yes Yes No No No No No No Yes Yes No No No Yes No No No Yes No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None 100% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 11 to 20 11 to 20 100% None None None None None 100% None None Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Yes Yes Yes No No No No No No No No No No No No No Yes Yes Yes Yes No Yes Yes Yes No No No No Very confident (4) No No No No No No No No No No No No No No No No No No Yes No No Male 16 to 24 16 to 34 20 to 24 C2DE No No Yes No No Yes C2 Not married Working Full time None No Yes No No No No No 4 4 No Yes No Phone Rural England West Midlands Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 21 1000 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 20 20 0 20 20 100 0 0 0 0 0 100 0 0 0 4 11.4285479 11.4285479 5098 Yes No Yes No No No No No Yes No No Yes No Yes No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No Yes No No Yes No No No No No No No Yes No No No No Yes No No No No No Yes No No Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly confident (3) No Yes No No No No No No No No No No No Yes No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 2500 2000 0 500 0 0 0 0 0 0 0 500 500 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 1000 0 0 2000 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2.70298147 2.70298147 105 Yes No Yes No No Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No Not at all confident (1) Yes No No No No No No No No No No No No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North East North White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 10 10 100 0 0 0 0 0 100 0 0 0 0 3.06790113 3.06790113 106 Yes No No No No Yes No No No Yes No Yes No Yes No No No No No Yes No No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 100+ None None None Strongly agree (4) Strongly agree (4) Don't know Slightly disagree (-2) Don't know Slightly disagree (-2) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No Yes No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 5+ 5+ Yes Yes No Phone Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 17 20400 20400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20400 0 0 0 0 20400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 10.0057049 10.0057049 1001 Yes No Yes Yes Yes Yes Yes No No Yes Yes Yes Yes Yes No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes Yes No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No Yes No No Yes Yes Yes No No No No No Yes Yes Yes No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No Yes No No Yes Yes Yes No No No No No Yes No No No No No No No Yes No No No No No No No Yes Yes Yes No No No No No 100+ 51 to 100 41 to 50 11 to 20 41 to 50 1 to 10 51 to 100 51 to 100 2-3 times a week (130) 2-3 times a week (130) Every 2-3 weeks (30) 51 to 100 31 to 40 21 to 30 51 to 100 1 to 10 1% to 24% 50% to 74% 1 to 10 1% to 24% 21 to 30 25% to 49% 25% to 49% 11 to 20 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything About once a month (12) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% None None 100% 1 to 10 1 to 10 1 to 10 Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 50% to 74% 50% to 74% 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% None None None None 100% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 41 to 50 11 to 20 31 to 40 1 to 10 51 to 100 51 to 100 31 to 40 31 to 40 51 to 100 11 to 20 1% to 24% 1 to 10 50% to 74% 1 to 10 1% to 24% 21 to 30 25% to 49% 21 to 30 50% to 74% 1 to 10 1 to 10 Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No Yes No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England London South White British White Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes Yes Yes No Yes No No Yes No Yes No No No Yes No Yes Yes No No Yes No Yes No Yes No Yes Yes No Yes Yes Yes No No Yes No Yes No No No Yes No Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 14 20464 4455 1233 4288 566 9966 0 0 0 843 366 477 578 578 0 0 0 0 0 0 0 0 0 0 0 0 57 4 6 4 1 0 33 2 0 0 0 0 22 2 3 4 1 0 55 4 3 4 1 0 4 4 0 4 0 0 3 2 3 2 0 0 7 0 0 0 0 0 0 22 0 2 0 1 0 11 3 3 0 3 2 1 0 2 0 3 0 0 0 7.27272749 50 12.727273 43.1372566 47.272728 100 50 0 0 100 0 100 0 66.6666641 66.6666641 100 50 0 0 0 100 0 0 0 100 100 0 0 0 0 0 15285 4654 1043 3322 578 5688 72 35 32 67 12 17.9104481 58.8235283 7 10.4477615 55 25 55.2238808 45.4545441 9 5 0 2.60827494 2.60827494 107 Yes No No No No No No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes No No No No No No Several times a day (730) Yes Yes No No No No No No No No No No Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Likely (3) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% 1 to 10 100% 1 to 10 100% None 100% 1 to 10 None Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No Yes No No Male 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Working Part time Any Yes No No No Yes No Yes 5+ 5+ Yes No No Phone Urban England North East North White British White Yes No Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No Yes No Yes No No No Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 100 100 1 100 0 0 100 0 2 0 5 11.7109346 11.7109346 1030 Yes No Yes Yes No Yes No No Yes Yes Yes Yes No Yes No Yes No No No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Yes Yes No Yes Yes Yes No Yes Yes No No No No No No No No No No No Yes Yes Yes No No No Yes Yes No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England South East South White British White No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 5 2 0 0 2 1 0 0 0 0 0 0 5 2 0 0 2 0 5 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 400 400 0 0 0 0 10 0 9 9 0 0 0 0 0 9 9 100 100 0 1 3 10.8361282 10.8361282 1031 Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No Yes No No Yes No Yes No No Yes Yes No No No No No 5-6 days a week (286) Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None 1 to 10 1% to 24% 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 41 to 50 20 to 30 1 to 10 Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Yes Yes No No No No Yes No No No No No No Yes Yes No No No No No No No No No No Yes No No Yes Yes Yes Yes No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South West South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 12 1000 0 0 0 1000 0 0 0 0 0 0 0 1800 0 200 1000 0 0 600 1200 200 1000 0 500 500 0 7 0 0 1 3 3 2 0 0 0 0 0 5 0 0 0 2 0 7 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 5 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1 1 3 28.5714283 0 14.2857141 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4100 2500 1000 0 600 0 14 2 7 9 2 22.2222214 0 1 11.1111107 7 7 100 100 0 5 0 2.70298147 2.70298147 108 Yes Yes Yes No No Yes No No No No No Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No Yes Yes Yes No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes Yes No Yes Yes Yes No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes Yes No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) 51 to 100 31 to 40 51 to 100 51 to 100 None None None None 51 to 100 100% 100% Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 101 to 200 31 to 40 51 to 100 101 to 200 None None None None None None 101 to 200 100% 101 to 200 100% None None Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No Yes No Yes Yes Yes No No No No No Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Rural England East of England Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 100 0 1 1 1 0 40 0 0 0 0 0 60 0 1 1 1 0 100 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 100 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 100 0 0 0 100 100 0 0 0 0 0 2000 0 0 0 2000 0 103 40 63 103 0 0 0 0 0 103 103 100 100 0 0 3 14.6100512 14.6100512 1082 Yes No Yes Yes No Yes No No Yes No Yes No No Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No Yes No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No 31 to 40 11 to 20 Have not spent anything 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 25% to 49% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 11 to 20 11 to 20 41 to 50 Have not spent anything Have not spent anything Have not spent anything 1 to 10 25% to 49% 1 to 10 20 to 30 1 to 10 11 to 20 Have not spent anything 1 to 10 50% to 74% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything Have not spent anything 11 to 20 11 to 20 11 to 20 1 to 10 25% to 49% Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England West Midlands Midlands Indian Minority Ethnic No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No CAWI Kids 14 3200 0 2000 1200 0 0 2000 2000 0 1250 1250 0 7700 2000 1200 4500 0 0 0 2200 1000 1200 0 1300 1300 0 3 1 1 3 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 1 3 5 1 0 33.3333321 0 0 0 0 100 0 0 0 0 0 0 0 0 0 33.3333321 0 0 0 0 0 60 0 0 0 0 0 0 0 0 15450 11450 0 0 2000 2000 14 0 0 0 0 0 42.8571434 0 0 0 0 0 0 0 14 0 3.06872106 3.06872106 109 Yes No Yes No No Yes Yes No Yes Yes Yes No Yes Yes No No No Yes No No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 31 to 40 1 to 10 21 to 30 31 to 40 None None None None 31 to 40 100% 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 51 to 100 About once a week (52) 2-3 times a week (130) 51 to 100 11 to 20 31 to 40 51 to 100 51 to 100 100% None None None 100% 1 to 10 100+ 100+ 41 to 50 2-3 times a week (130) 2-3 times a week (130) 21 to 30 11 to 20 1 to 10 11 to 20 11 to 20 100% None None None 100% 1 to 10 41 to 50 21 to 30 21 to 30 Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 51 to 100 1 to 10 51 to 100 51 to 100 None None None None 51 to 100 100% 100% 100+ 100+ Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 100+ Have not spent anything 20 to 30 Have not spent anything 101 to 200 21 to 30 101 to 200 101 to 200 51 to 100 25% to 49% None None None None 51 to 100 100% 51 to 100 100% None 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes No No No No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes No No Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Rural England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 17 0 0 0 0 0 0 14000 6000 8000 25000 20000 5000 4200 2500 0 1200 500 0 0 0 0 0 0 50000 50000 0 31 56 22 3 61 3 1 12 12 1 1 0 30 40 6 1 60 0 31 52 18 2 61 0 0 52 18 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 0 0 0 61 0 0 0 0 0 0 0 0 0 0 4 4 1 0 3 0 0 0 100 100 100 0 0 0 100 100 0 0 0 100 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 93200 77200 13500 0 2500 0 176 27 137 164 72 43.9024391 0 0 0 92 92 100 100 0 12 4 14.0663652 14.0663652 1089 Yes No Yes No No No No No Yes No No No No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) 101 to 200 1 to 10 51 to 100 101 to 200 1 to 10 1% to 24% 100% None None 51 to 100 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 1 to 10 Have not spent anything 11 to 20 Have not spent anything 101 to 200 1 to 10 101 to 200 101 to 200 1 to 10 1% to 24% 1 to 10 100% None None 101 to 200 100% 101 to 200 100% None None Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Yes Yes Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 12 396 0 0 0 396 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 104 0 0 0 10 0 4 0 0 0 0 0 100 0 0 0 10 0 104 0 0 0 10 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.84615374 100 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1896 0 396 0 1500 0 114 4 110 114 4 3.5087719 100 0 0 110 110 100 100 0 0 0 2.9604094 2.9604094 110 Yes No Yes No No Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No Yes No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No No Yes No 3 3 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 1% to 24% 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 20 to 30 1 to 10 11 to 20 Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None None 11 to 20 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything Have not spent anything 20 to 30 51 to 100 51 to 100 51 to 100 None None None None None None 51 to 100 100% 51 to 100 100% None 11 to 20 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Don't know Slightly disagree (-2) Slightly agree (2) Yes No Yes No No Yes No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 3 3 Yes No No Phone England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 19 2500 2500 0 0 0 0 0 0 0 0 0 0 1500 0 500 1000 0 0 0 3000 1000 2000 0 1000 1000 0 30 5 0 13 14 5 0 0 0 0 0 0 30 5 0 6 13 0 30 5 0 6 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 30 5 0 6 13 0 0 0 0 0 0 0 0 0 0 0 0 7 1 5 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 16.666666 100 100 0 0 0 100 100 0 0 0 0 0 6500 4000 0 0 0 2500 67 0 54 54 0 0 0 0 0 54 54 100 100 0 13 3 14.6100512 14.6100512 1121 Yes No No No No Yes No No Yes No No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No No Yes No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No Yes No No No No No Yes No No No No No No No No No No No Yes No No No No No No No Yes Yes No No Yes No No No Yes No No No No No 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 11 to 20 11 to 20 11 to 20 None None None None None None None Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 21 to 30 21 to 30 21 to 30 None None None None None None None None None None None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes Yes Yes Yes No No Yes Yes No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England North West North White British White Yes Yes No No No Yes No Yes No No Yes Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 17 3200 3200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 2 0 0 20 0 0 2 0 0 0 0 0 0 0 0 20 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3200 0 0 0 0 3200 22 22 0 22 0 0 0 0 0 22 0 0 0 0 0 3 14.413929 14.413929 1127 Yes Yes Yes Yes No Yes No No Yes Yes No No No Yes No Yes No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Less often (6) 51 to 100 51 to 100 51 to 100 None None None None None None None Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 31 to 40 11 to 20 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 1% to 24% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 41 to 50 Have not spent anything Have not spent anything Have not spent anything 21 to 30 Have not spent anything 11 to 20 Have not spent anything 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 1 to 10 100% None None None None None 100% 11 to 20 Very likely (4) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 31 to 40 11 to 20 Have not spent anything Have not spent anything 101 to 200 51 to 100 21 to 30 101 to 200 11 to 20 1% to 24% None None 1 to 10 1% to 24% 21 to 30 25% to 49% 21 to 30 25% to 49% None 11 to 20 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes No Yes No No Yes No No No No No Yes Yes No Yes No Yes Yes Yes No No Yes No No No No Yes Yes No Yes Yes No Yes Yes No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes No Yes Yes Yes Yes Yes No No No No Not particularly confident (2) Yes No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 Yes Yes No Phone Rural Wales Wales Midlands White British White Yes No No No No Yes No Yes No No Yes Yes No Yes No No Yes No No Yes No Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 19 2000 0 0 0 2000 0 6000 4000 2000 0 0 0 4800 0 0 3000 0 1800 0 0 0 0 0 2000 2000 0 70 9 2 19 25 3 70 6 2 0 0 0 0 0 0 5 25 0 70 6 2 5 25 0 0 6 0 5 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 25 0 0 0 0 0 0 0 0 0 0 3 0 14 0 3 0 0 0 0 0 100 0 16.666666 0 100 0 0 0 100 100 100 0 0 0 0 100 0 0 0 100 100 0 0 0 0 0 14800 9000 4000 1800 0 0 128 78 30 108 11 10.1851854 0 1 0.92592591 97 27 35.1851845 27.8350525 0 20 4 11.4285479 11.4285479 1140 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) About once a week (52) 51 to 100 21 to 30 21 to 30 51 to 100 None None None None None None None 21 to 30 21 to 30 21 to 30 Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 21 to 30 21 to 30 51 to 100 None None 1 to 10 100% None None None None None None 21 to 30 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Kids 14 0 0 0 0 0 0 3249 3249 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 2 0 0 0 0 30 0 0 0 0 0 30 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 30 30 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3249 3249 0 0 0 0 62 30 30 60 0 0 100 0 0 60 0 0 0 30 2 0 3.06872106 3.06872106 111 Yes No Yes No No Yes No No Yes No No No No Yes No No No Yes No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 100+ Have not spent anything Have not spent anything About once a week (52) 201 to 500 201 to 500 201 to 500 201 to 500 100% 1% to 24% None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 11 to 20 100+ Have not spent anything Have not spent anything Have not spent anything 201 to 500 201 to 500 201 to 500 201 to 500 75% to 99% 1 to 10 1% to 24% None None 1 to 10 100% 1 to 10 100% None None Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Yes Yes Yes No Yes No No No No No No No No No No Yes Yes Yes Yes No Yes Yes No Yes No No No No Very confident (4) Yes No No No No No No No No No No No Yes No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England South West South White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 18 14923 0 0 0 14923 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1976 0 1976 0 0 0 0 213 0 1 0 0 0 213 0 1 0 0 0 0 0 0 0 0 0 213 0 1 0 0 0 213 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0.938967109 0 0 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16899 1976 14923 0 0 0 214 214 0 214 213 99.5327072 0.938967109 0 0 1 1 100 100 0 0 2 15.476119 15.476119 1149 Yes Yes Yes No No Yes No No Yes Yes Yes Yes No Yes Yes Yes No Yes No No No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) Yes No Yes Yes Yes Yes No Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No No No No No Yes No No No No Yes No Yes Yes Yes No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No No No No No Yes No No No No Yes No Yes No No No No No Yes No Yes No Yes Yes No No Yes No Yes No No No No No 51 to 100 51 to 100 3 31 to 40 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) Most days (365) 2-3 times a week (130) 51 to 100 21 to 30 21 to 30 51 to 100 None None None None None None None None 1001+ 1 to 10 1 to 10 11 to 20 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None 1 to 10 1% to 24% 1% to 24% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None None None None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 1 to 10 Have not spent anything Have not spent anything 11 to 20 51 to 100 101 to 200 31 to 40 51 to 100 101 to 200 1 to 10 1% to 24% 1 to 10 1% to 24% None None 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 11 to 20 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) No No No Yes Yes No Yes No No No No No No Yes No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes No No Yes No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No No No No No Slightly confident (3) No No No No No No No No No No Yes No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England West Midlands Midlands White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No No Yes No Yes No Yes Yes CAWI Adults 19 7500 2500 4000 1000 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 0 0 0 80 2 2 11 50 1 30 1 1 1 0 0 30 1 1 10 50 1 60 2 2 11 50 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 0 2 0 0 4000 3 3 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 18.181818 18.181818 0 0 0 0 0 100 100 0 0 100 9000 1000 0 0 1500 6500 146 33 93 126 1 0.793650806 4.76190472 0 0 125 4 3.96825385 3.20000005 3 20 4 11.4285479 11.4285479 1165 Yes No Yes No No No No No Yes No No No No Yes No No No Yes No No Yes No Yes No No No No No No No No No Yes No No Yes Yes No No No No No Once a day (365) No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No No No Yes No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.60827494 2.60827494 112 Yes No No No No Yes No No Yes No No No No Yes No No No No Yes No No No No No No No No No No No Yes No Yes No Yes Yes No No No No No No Once a day (365) Yes No No No No No No Yes No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 1 to 10 25% to 49% None None None 1 to 10 100% 100% 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 1 to 10 11 to 20 1 to 10 1% to 24% None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Slightly disagree (-2) Don't know Slightly agree (2) Slightly agree (2) Don't know Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Yes No Yes Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ No Yes No Phone Rural Scotland Scotland North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 16 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 500 0 0 0 0 0 0 0 1150 500 650 10 0 0 1 0 17 0 0 0 0 0 10 10 0 0 0 0 0 10 0 0 0 0 10 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 1 0 7 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 100 100 1650 1000 650 0 0 0 28 10 10 20 3 15 0 0 0 17 17 100 100 0 8 5 14.8424444 14.8424444 1193 Yes No No No No No No No Yes Yes No No No No No No No Yes No Yes No No No No No No No Yes No Yes No No Yes No No Yes No No No No No No Once a day (365) Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 50% to 74% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 51 to 100 41 to 50 Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No Yes No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England London South African Minority Ethnic Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Kids 12 1500 500 500 500 0 0 2000 2000 0 100 100 0 2000 500 500 500 0 0 500 1000 500 500 0 1000 1000 0 1 3 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 1 1 1 1 0 0 0 0 0 0 66.6666641 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 6600 4600 0 0 1000 1000 8 0 0 0 0 0 50 0 0 0 0 0 0 0 8 0 2.60827494 2.60827494 113 Yes No Yes No No No No No Yes No No Yes Yes Yes No Yes No Yes Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No 2-4 days a week (156) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Don't know Slightly disagree (-2) Yes No No No No No Yes No Yes No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.70298147 2.70298147 114 Yes No Yes No No Yes No No Yes Yes No No No Yes No Yes No No No No Yes No No No No No No No No No Yes No Yes No No No Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes Yes Yes No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything Less often (6) 31 to 40 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% 21 to 30 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 51 to 100 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 11 to 20 Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None None 11 to 20 100% 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 Have not spent anything 51 to 100 Have not spent anything 51 to 100 1 to 10 11 to 20 11 to 20 1 to 10 1% to 24% None None None None 11 to 20 100% 11 to 20 100% None 31 to 40 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England South East South White British White Yes No No No Yes No Yes Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 12 2500 0 0 2000 500 0 800 800 0 0 0 0 7800 7000 300 500 0 0 0 2300 300 2000 0 1500 1500 0 35 1 0 1 16 5 5 0 0 0 0 0 0 0 0 0 15 0 5 0 0 0 15 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 15 0 0 0 0 0 0 0 0 0 30 1 0 1 1 5 60 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 14300 6800 500 0 7000 0 58 5 15 20 3 15 0 0 0 17 17 100 100 0 38 0 2.70298147 2.70298147 115 Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Kids 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 7 0 0 0 1 0 0 0 0 0 0 0 7 0 0 0 1 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1 7 8 0 0 0 0 0 8 0 0 0 1 0 0 3.06790113 3.06790113 116 Yes No Yes No No No No No No Yes Yes No Yes No Yes No No Yes No No No No No No No No No No No Yes No No No No No Yes No No No No No No 5-6 days a week (286) Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes No No No No No No 100+ 51 to 100 51 to 100 Have not spent anything 3 1 to 10 11 to 20 11 to 20 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 21 to 30 21 to 30 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 1 to 10 1 to 10 20 to 30 51 to 100 11 to 20 1 to 10 1 to 10 1 to 10 50% to 74% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly disagree (-4) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No Yes No No No Yes No No No No No No No Yes Yes No No No No Yes No No No Yes No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South West South White British White Yes No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes CAWI Kids 15 12000 7500 0 2500 500 1500 5500 5500 0 2000 2000 0 4600 2100 0 2500 0 0 0 0 0 0 0 0 0 0 6 2 1 3 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 1 3 0 0 50 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23100 12500 500 500 2100 7500 12 4 0 4 2 50 0 0 0 2 2 100 100 0 8 0 2.60827494 2.60827494 117 Yes No Yes No No Yes No No Yes Yes Yes Yes No Yes Yes No No Yes No No Yes No No No No No No No No Yes No No Yes No Yes No Yes No No No No No Several times a day (730) Yes No Yes No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 41 to 50 41 to 50 41 to 50 1 to 10 1% to 24% 25% to 49% 1 to 10 1% to 24% 11 to 20 50% to 74% 50% to 74% Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 25% to 49% 1 to 10 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 1 to 10 1 to 10 Have not spent anything 11 to 20 51 to 100 51 to 100 51 to 100 1 to 10 51 to 100 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 1% to 24% 21 to 30 50% to 74% 21 to 30 50% to 74% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes Yes Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Yes Yes Yes No No Yes No No No Yes Yes No No Yes Yes No Yes No No No No No No No No No Yes No No Yes No Yes Yes Yes No No Yes Yes No No Yes Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 Yes Yes No Phone Urban England Yorkshire and The Humber North White British White Yes No No No Yes No Yes Yes No Yes No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 18 6300 6000 0 0 300 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 1000 1000 0 45 0 0 4 5 2 45 0 0 4 3 0 0 0 0 0 2 0 45 0 0 4 5 0 5 0 0 0 0 0 2 0 0 0 0 0 10 0 0 0 0 0 1 20 0 0 4 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11.1111107 40 22.2222214 50 55.5555573 0 0 0 0 0 0 0 0 0 0 0 0 0 25 100 100 0 0 0 60 60 0 0 0 0 0 9300 1000 300 0 2000 6000 56 52 2 54 5 9.25925922 28.5714283 10 18.5185184 49 27 59.2592583 55.1020393 0 2 4 10.0924006 10.0924006 1180 Yes No No No No Yes No No Yes No No Yes No Yes No No No No No No Yes No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No Yes No No No No Yes No No Yes No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No Yes Yes No Yes Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 51 to 100 51 to 100 11 to 20 51 to 100 None None None None None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 75% to 99% 75% to 99% 31 to 40 11 to 20 11 to 20 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything Most days (365) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 101 to 200 51 to 100 31 to 40 101 to 200 None None None None None None 21 to 30 1% to 24% 21 to 30 1% to 24% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Yes Yes Yes Yes Yes No Yes No No No No No No Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Yes Yes Yes Yes Yes Yes No No No Yes Yes No No Yes Yes No Yes Yes No No No No No No No No No Yes Yes Yes No No No No No Yes No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No No No Yes No Yes 4 4 No Yes No Phone Rural England West Midlands Midlands White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 4000 1500 0 2500 0 0 0 1500 0 1500 0 2000 2000 0 80 0 10 5 15 4 60 0 10 0 0 0 20 0 0 0 15 0 80 0 10 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 15 0 0 0 0 0 0 0 0 0 0 0 0 5 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 80 80 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 7500 6000 0 0 1500 0 114 70 35 105 0 0 0 0 0 105 23 21.9047623 21.9047623 0 9 4 14.0663652 14.0663652 1185 Yes Yes No Yes No Yes No No Yes Yes No Yes No Yes Yes No No No No No No No Yes No No No No Yes No Yes No Yes Yes No Yes No No No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No Yes No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No Yes Yes No No Yes No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 100+ 100+ 100+ Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None 100% None None None None None 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 31 to 40 Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% None None 100% 1 to 10 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 11 to 20 2-3 times a week (130) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 11 to 20 Have not spent anything 31 to 40 100+ 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 75% to 99% 1 to 10 75% to 99% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes Yes Yes Yes Yes Yes Yes No No No No No No Yes Yes No No No No No No Yes Yes No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes No Yes 4 4 Yes Yes No Phone Urban England North East North White Irish White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 18 36200 35000 0 1200 0 0 0 0 0 0 0 0 8000 4000 0 4000 0 0 0 0 0 0 0 2000 0 2000 3 0 0 4 0 6 1 0 0 0 0 5 1 0 0 1 0 1 2 0 0 1 0 6 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 1 0 0 3 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 0 0 100 0 0 0 0 0 0 0 0 100 100 46200 5200 2000 0 4000 35000 13 6 3 9 1 11.1111107 20 1 11.1111107 8 6 77.7777786 75 0 4 4 14.9710493 14.9710493 1202 Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 11 to 20 None 11 to 20 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) No Yes No Yes No No Yes No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Working Full time Any Yes No No No Yes Yes No 4 4 Yes No No Phone Rural Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 17 0 0 0 0 0 0 0 0 0 1200 1200 0 3300 2000 0 1300 0 0 0 0 0 0 0 3200 3200 0 0 0 1 4 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7700 5700 0 0 2000 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 17 4 7.70751095 7.70751095 1204 Yes No Yes No No Yes No No No No No No No Yes No Yes No Yes No No No No No No No No No Yes No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Less often (6) 51 to 100 31 to 40 31 to 40 None None 1% to 24% None None None None None 21 to 30 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 41 to 50 Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything Most days (365) 51 to 100 41 to 50 41 to 50 None None 100% 1 to 10 1% to 24% None None 41 to 50 100% 100% 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 Have not spent anything 20 to 30 Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ Have not spent anything Have not spent anything 41 to 50 Have not spent anything 101 to 200 31 to 40 51 to 100 101 to 200 None None 1 to 10 1% to 24% 1 to 10 1% to 24% 51 to 100 50% to 74% 51 to 100 50% to 74% None 41 to 50 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Strongly disagree (-4) Yes No No No No No No No No No No No No Yes No Yes No Yes No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No Yes No No No No Yes No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes No No Phone Northern Ireland Northern Ireland North White British White Yes No No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 19 1500 0 0 1500 0 0 3000 3000 0 0 0 0 9000 5000 0 4000 0 0 0 2500 0 2500 0 2000 2000 0 70 2 0 54 50 5 40 0 0 0 0 0 0 0 0 50 50 0 40 0 0 50 50 0 0 0 0 0 0 0 5 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 50 50 0 0 0 0 0 0 0 0 0 30 2 0 4 0 5 0 16.666666 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 8 0 100 100 0 0 0 100 100 0 0 0 0 0 18000 13000 0 0 5000 0 181 40 100 140 0 0 21.9512196 4 2.85714293 140 100 71.4285736 71.4285736 0 41 1 11.0078382 11.0078382 1214 Yes Yes No No No Yes No No Yes Yes No Yes Yes Yes No No No Yes Yes No Yes No Yes No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No No No No No No Yes No No No Yes Yes No No Yes Yes No No No No No No Yes Yes No Yes No No No No No No Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No Yes Yes No No Yes No No No No No No Yes No No No No Yes No No No Yes No No No 100+ 51 to 100 51 to 100 Have not spent anything 1 to 10 1 to 10 11 to 20 11 to 20 2-3 times a week (130) Every 2-3 weeks (30) 21 to 30 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 25% to 49% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 31 to 40 31 to 40 Have not spent anything 21 to 30 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1% to 24% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 11 to 20 1 to 10 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 100+ 41 to 50 1 to 10 1 to 10 31 to 40 51 to 100 31 to 40 11 to 20 1 to 10 11 to 20 11 to 20 50% to 74% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 100% 1 to 10 100% 1 to 10 11 to 20 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No Yes No Yes Yes No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No No No Yes Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Working Part time Any Yes No Yes No Yes Yes Yes 5+ 5+ Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 18 13000 10000 0 1000 500 1500 0 0 0 0 0 0 6000 3500 0 2500 0 0 0 500 0 500 0 1500 1000 500 27 0 0 5 0 3 9 0 0 0 0 2 9 0 0 0 0 0 18 0 0 0 0 2 9 0 0 0 0 2 5 0 0 1 0 0 9 0 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 6 0 0 9 0 0 5 0 1 50 27.7777786 50 100 100 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 100 0 0 0 100 20000 5000 1000 500 3500 10000 35 11 9 20 11 55 23.0769234 9 45 9 9 100 100 6 15 5 14.6100512 14.6100512 1218 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes Yes No No No No No Once a day (365) Yes No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No 31 to 40 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything Have not spent anything Have not spent anything 1 to 10 31 to 40 21 to 30 21 to 30 1 to 10 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None None Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No Yes No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North White British White Yes No No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 13 3500 3500 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 20 2 0 0 2 0 20 2 0 0 0 0 0 0 0 0 2 0 20 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4500 0 0 0 1000 3500 24 22 2 24 0 0 0 0 0 24 24 100 100 0 0 0 3.06790113 3.06790113 118 Yes No No No No Yes Yes No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Strongly agree (4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England West Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.18014598 3.18014598 119 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No Yes No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes Yes Yes No Yes No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 About once a month (12) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 31 to 40 1 to 10 21 to 30 31 to 40 None None None None 11 to 20 25% to 49% 25% to 49% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything 1 to 10 11 to 20 Have not spent anything 41 to 50 1 to 10 31 to 40 41 to 50 1 to 10 1% to 24% None None None None 11 to 20 25% to 49% 11 to 20 25% to 49% None 1 to 10 Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No Yes Yes No No No No No No No No Yes Yes No No No No No No Yes No No No No No No Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Yes Yes Yes No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes Yes No No Yes Yes No No No No No No Very confident (4) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 19 1299 0 0 0 0 1497 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 1190 1190 0 4 0 2 8 31 3 2 0 2 0 1 0 2 0 0 8 30 0 4 0 2 8 31 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 100 0 0 0 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 48.3870964 48.3870964 0 0 0 0 0 3689 1190 0 499 2000 0 48 5 40 45 4 8.88888931 0 0 0 41 17 46.6666679 41.4634132 0 3 3 14.6100512 14.6100512 1220 Yes No Yes No No Yes No No Yes No No No No Yes No No No No No No Yes No No No No No No No No Yes No No No No Yes No No No No No No No Once a day (365) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 100% Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No Yes Yes Yes No 5+ 5+ No Yes No Phone Rural England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 16 0 0 0 0 0 0 0 0 0 0 0 0 2000 2000 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 2500 500 0 0 2000 0 2 0 0 0 0 0 100 0 0 0 0 0 0 0 2 5 16.0742931 16.0742931 1228 Yes Yes Yes No No Yes Yes No Yes No No No No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No Yes Yes Yes No No No No No No Yes No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 1 to 10 1% to 24% None 1 to 10 75% to 99% 1 to 10 1% to 24% 11 to 20 100% 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 11 to 20 Have not spent anything Have not spent anything Have not spent anything 51 to 100 11 to 20 11 to 20 1 to 10 11 to 20 1 to 10 1% to 24% None None 1 to 10 50% to 74% 11 to 20 100% 11 to 20 100% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No Yes No No No No No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Working Part time Any Yes No Yes No No No Yes 4 4 Yes No No Phone Urban England South West South White British White Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 18 8000 8000 0 0 0 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 1000 0 1000 0 0 0 0 0 4 0 13 0 0 0 2 0 12 0 0 0 2 0 0 0 0 0 4 0 12 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 9 0 0 2 0 4 0 11 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 8.33333302 0 75 16.666666 100 100 0 0 0 0 0 0 0 0 0 0 10000 2000 0 0 0 8000 17 14 2 16 1 6.25 0 9 56.25 15 15 100 100 0 1 4 10.8361282 10.8361282 1248 Yes No No Yes No Yes No No Yes Yes No Yes No Yes No No No No Yes No Yes No No No No No No No No Yes No No Yes No No No Yes No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No No Yes 100+ 100+ 51 to 100 41 to 50 41 to 50 3 Have not spent anything Have not spent anything Most days (365) Less often (6) 21 to 30 11 to 20 11 to 20 1 to 10 25% to 49% None 1 to 10 25% to 49% 1 to 10 50% to 74% 75% to 99% 1 to 10 1 to 10 1 to 10 11 to 20 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 21 to 30 1 to 10 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 31 to 40 1 to 10 20 to 30 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 20 to 30 Have not spent anything 20 to 30 100+ 41 to 50 11 to 20 11 to 20 1 to 10 25% to 49% None None 1 to 10 25% to 49% 1 to 10 50% to 74% 1 to 10 75% to 99% 1 to 10 21 to 30 Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Yes Yes No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No No No Yes No Yes 5+ 5+ No Yes No Phone Urban England Yorkshire and The Humber North Pakistani Minority Ethnic No Yes Yes No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 18 22100 10000 4700 5000 2400 0 2500 2500 0 1000 1000 0 6500 3000 1000 2500 0 0 0 3500 1000 2500 0 1300 1300 0 27 3 3 2 8 1 0 0 0 0 0 0 15 0 0 0 0 0 15 0 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 5 0 0 0 0 0 5 2 2 0 0 0 0 0 12 3 3 2 8 1 46.6666679 0 26.666666 62.5 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34900 14800 2400 0 3000 14700 44 0 15 15 7 46.6666679 0 4 26.666666 8 5 80 62.5 2 29 5 10.0924006 10.0924006 1255 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No Yes No Yes Yes No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes No No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Every 2-3 weeks (30) 101 to 200 51 to 100 1 to 10 101 to 200 None None None None None None None Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 31 to 40 31 to 40 31 to 40 None None None None None None None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 11 to 20 Have not spent anything 11 to 20 11 to 20 Have not spent anything 101 to 200 101 to 200 51 to 100 101 to 200 1 to 10 1% to 24% None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No Yes Yes Yes Yes Yes No No No No No No No Yes No No No Yes No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No Yes Yes Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No Yes No No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes No Yes 4 4 Yes Yes No Phone Urban England South West South White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No No Yes No Yes No Yes Yes CAWI Adults 16 0 0 0 0 0 0 0 0 0 0 0 0 2399 1100 0 0 0 1299 0 0 0 0 0 2000 2000 0 110 0 1 1 40 2 100 0 1 0 0 0 10 0 0 1 40 0 110 0 1 1 40 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 4399 2000 0 1299 1100 0 154 101 51 152 1 0.657894731 0 0 0 151 1 1.31578946 0.662251651 0 2 4 16.0742931 16.0742931 1277 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.60827494 2.60827494 120 Yes Yes No Yes No Yes No No Yes Yes Yes Yes No Yes No No No No No Yes No No No No No No No Yes No No Yes No No No No No No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Strongly disagree (-4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes No No No No No Yes No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England London South Indian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 500 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.70298147 2.70298147 121 Yes No No Yes No Yes No No Yes Yes Yes No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 41 to 50 41 to 50 31 to 40 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No Yes Yes Yes Yes Yes 5+ 5+ Yes No No Phone England Yorkshire and The Humber North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 17 4500 3500 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4500 0 0 0 0 4500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 14.9710493 14.9710493 1380 Yes Yes No No No No No No No Yes No Yes No Yes Yes No No Yes No No No No No No No No No Yes No No No No Yes No No No No No No No No No Several times a day (730) Yes No Yes No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No Yes Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 101 to 200 51 to 100 1 to 10 101 to 200 None None 1 to 10 1% to 24% 101 to 200 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 11 to 20 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 31 to 40 31 to 40 Have not spent anything Less often (6) 11 to 20 1 to 10 1 to 10 None None None None None None None None 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 41 to 50 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 101 to 200 51 to 100 11 to 20 101 to 200 1 to 10 1% to 24% None None 1 to 10 1% to 24% 101 to 200 75% to 99% 101 to 200 75% to 99% None 11 to 20 Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes Yes Yes No Yes No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No Yes No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Rural England East of England Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 2000 500 0 1500 0 0 0 0 0 0 0 3500 3500 0 110 1 1 7 1 11 100 0 0 0 0 0 10 1 1 1 1 1 110 1 1 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 110 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 6 0 10 0 0 0.909090936 100 100 100 0 100 0 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5500 5000 0 0 500 0 131 100 15 115 2 1.73913038 0 2 1.73913038 113 111 98.2608719 98.2300873 0 16 2 9.84904194 9.84904194 1325 Yes Yes No No No Yes No No Yes Yes No Yes No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No Yes No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No No Yes Yes Yes No 5+ 5+ Yes No No Phone Urban England West Midlands Midlands Bangladeshi Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 17 0 0 0 0 0 0 0 0 0 0 0 0 1800 1800 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2800 1000 0 0 1800 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5 9.84904194 9.84904194 1337 Yes No No No No No No No Yes Yes No No No Yes No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No Yes 3 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 21 to 30 None 21 to 30 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None 1 to 10 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 Have not spent anything Have not spent anything 1 to 10 11 to 20 31 to 40 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 1 to 10 100% None 31 to 40 Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 4 4 No Yes No Phone Urban England South East South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 16 2400 1400 0 1000 0 0 0 0 0 0 0 0 800 800 0 0 0 0 0 0 0 0 0 200 200 0 28 0 0 1 0 5 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 28 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 100 0 0 0 0 0 0 0 0 0 0 3400 1200 0 0 800 1400 34 0 1 1 0 0 0 1 100 1 1 100 100 0 33 4 10.8361282 10.8361282 1399 Yes No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes No No No No No No Yes Yes Yes Yes Yes No Yes No No No No Yes Yes Yes Yes Yes No No No No No No Yes Yes Yes Yes No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Most days (365) 101 to 200 11 to 20 101 to 200 101 to 200 None None None None 101 to 200 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 11 to 20 11 to 20 Most days (365) Most days (365) 21 to 30 1 to 10 11 to 20 21 to 30 None None 100% 21 to 30 100% 21 to 30 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 101 to 200 21 to 30 101 to 200 101 to 200 1 to 10 1% to 24% 1 to 10 25% to 49% 21 to 30 1% to 24% 101 to 200 75% to 99% 101 to 200 75% to 99% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No Yes No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No Yes No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No No Yes Yes Yes Yes 5+ 5+ Yes Yes No Phone Rural Wales Wales Midlands White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 16 0 0 0 0 0 0 4000 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140 22 2 1 0 0 20 1 1 0 0 0 120 20 1 1 0 0 140 21 2 1 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 21 0 0 0 0 0 140 21 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 100 100 0 100 100 100 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 2000 2000 0 0 0 165 22 142 164 2 1.21951222 33.3333321 21 12.8048782 162 161 99.3902435 99.3827133 0 1 5 11.4285479 11.4285479 1415 Yes No Yes No No Yes No No No Yes No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes Yes No Yes Yes No 51 to 100 51 to 100 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a week (52) 51 to 100 41 to 50 11 to 20 51 to 100 31 to 40 50% to 74% 50% to 74% 41 to 50 75% to 99% 11 to 20 75% to 99% 75% to 99% 1 to 10 Very likely (4) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 51 to 100 21 to 30 21 to 30 Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 41 to 50 11 to 20 11 to 20 31 to 40 1 to 10 25% to 49% 25% to 49% 1 to 10 25% to 49% 11 to 20 50% to 74% 11 to 20 75% to 99% 75% to 99% 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 11 to 20 75% to 99% 50% to 74% None None 1 to 10 50% to 74% 75% to 99% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 1 to 10 Have not spent anything 20 to 30 51 to 100 101 to 200 51 to 100 41 to 50 101 to 200 51 to 100 50% to 74% 41 to 50 25% to 49% 51 to 100 50% to 74% 41 to 50 75% to 99% 41 to 50 75% to 99% None 31 to 40 Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Yes Yes No No Yes No No No No No No No No Yes Yes No No No Yes No No No No No No No No No Yes Yes No Yes No No Yes No No No No No No No No No No No Yes Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England East of England Midlands White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 19 7500 4000 2000 1500 0 0 6000 6000 0 4000 4000 0 5500 3000 0 2000 500 0 0 0 0 0 0 2500 2500 0 72 6 2 45 15 5 50 0 0 20 0 0 12 0 0 15 15 0 62 0 0 35 15 0 40 0 0 10 12 0 35 0 0 5 6 0 50 0 0 10 0 0 20 20 0 0 20 2 0 0 0 0 0 0 0 0 0 10 6 2 10 0 5 64.5161285 70 80.6451645 90.9090881 96.7741928 0 0 0 0 0 0 0 0 0 0 28.5714283 25 28.5714283 57.1428566 80 85.7142868 80 50 0 66.6666641 93.3333359 0 0 0 0 0 25500 16000 500 0 3000 6000 145 70 42 112 62 55.3571434 48.421051 60 53.5714302 50 42 92.8571396 84 0 33 3 9.84904194 9.84904194 1437 Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No No No Yes No No No No No No No No No Yes No Yes No No Yes Yes Yes No No No No Several times a day (730) Yes No Yes Yes Yes Yes No Yes No No No Yes Yes Yes No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 31 to 40 31 to 40 31 to 40 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% None None None 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 11 to 20 11 to 20 Every 2-3 weeks (30) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 20 to 30 11 to 20 Have not spent anything 1 to 10 31 to 40 21 to 30 11 to 20 1 to 10 21 to 30 11 to 20 75% to 99% None None 1 to 10 1% to 24% 1 to 10 75% to 99% 1 to 10 75% to 99% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Strongly disagree (-4) Neither agree nor disagree (0) Strongly disagree (-4) No Yes No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No Yes No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No No No Yes No Yes 4 4 No Yes No Phone Urban England North East North White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 16 3600 3100 0 500 0 0 3500 2000 1500 0 0 0 0 0 0 0 0 0 0 189 0 0 189 0 0 0 15 9 0 1 1 1 5 4 0 1 1 1 9 1 0 0 0 0 14 5 0 1 1 1 14 2 0 0 1 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 1 4 0 0 0 0 100 0 0 0 100 40 0 60 100 100 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 100 0 0 0 100 7478 2500 1689 0 189 3100 27 12 10 22 18 81.8181839 0 3 13.636364 4 3 95.4545441 75 0 5 4 11.7109346 11.7109346 1444 Yes No Yes No No Yes No No Yes Yes Yes Yes No Yes No Yes No No No Yes No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No Yes Yes No Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Less often (6) 31 to 40 21 to 30 1 to 10 31 to 40 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 41 to 50 31 to 40 11 to 20 41 to 50 None None None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Yes Yes Yes Yes Yes No Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No No No No No Yes Yes Yes Yes No Yes Yes No Yes Yes Yes No No Yes Yes Yes No No No No No No No No No No Yes No Yes No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No Very confident (4) No Yes No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No Yes No Yes Yes Yes 5+ 5+ Yes Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes No No Yes Yes No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 1 2 0 3 0 30 1 2 0 0 0 10 0 0 0 3 0 40 1 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 46 33 13 46 0 0 0 0 0 46 5 10.869565 10.869565 0 0 5 15.476119 15.476119 1451 Yes Yes No No No Yes No No Yes Yes Yes Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No Yes Yes Yes No No No No No No No No Several times a day (730) No Yes No No Yes No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No Yes No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None 11 to 20 100% 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 20 to 30 11 to 20 1 to 10 Have not spent anything 1 to 10 Have not spent anything 41 to 50 1 to 10 31 to 40 31 to 40 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 31 to 40 100% 31 to 40 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes No No No Yes No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No Yes Yes Yes Yes Yes Yes No Yes No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 1 1 No Yes No Phone Rural England West Midlands Midlands White British White No Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 17 900 0 0 500 400 0 0 0 0 0 0 0 400 400 0 0 0 0 0 0 0 0 0 1500 1500 0 8 5 0 14 14 5 0 0 0 7 0 0 5 5 0 7 14 0 5 5 0 14 14 0 1 0 0 0 0 0 2 0 0 0 0 0 3 0 0 0 0 0 0 4 5 0 14 14 0 0 0 0 0 0 0 0 0 3 0 0 0 0 5 20 50 60 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 2800 2000 400 0 400 0 46 7 31 38 1 2.63157892 22.2222214 3 7.89473677 37 37 100 100 0 8 1 11.4285479 11.4285479 1458 Yes No Yes No No Yes No No Yes No No No No Yes No No No No No Yes Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes Yes No No No No No No Yes No Yes Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes Yes No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% 75% to 99% None None 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 50% to 74% None None 1 to 10 25% to 49% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 2-3 times a week (130) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 100% None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything 21 to 30 11 to 20 1 to 10 21 to 30 11 to 20 75% to 99% 11 to 20 50% to 74% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes Yes No 5+ 5+ Yes Yes No Phone Urban England West Midlands Midlands White & Black African Minority Ethnic Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 19 500 0 0 0 500 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 700 0 0 700 1498 1498 0 10 0 0 5 6 2 10 0 0 1 4 0 0 0 0 4 2 0 10 0 0 5 6 0 10 0 0 5 2 0 8 0 0 3 2 0 0 0 0 0 0 0 2 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 100 80 0 0 100 0 0 0 0 0 0 0 0 0 0 100 60 0 40 0 100 33.3333321 100 0 100 100 0 0 0 0 0 4398 1498 1200 0 1700 0 23 15 6 21 17 80.9523773 68.421051 0 0 4 4 100 100 0 2 5 14.0663652 14.0663652 1478 Yes No Yes No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Yes Yes No No No No No Yes No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England South East South White British White No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 3000 1000 0 2000 0 0 0 0 0 0 0 0 0 0 2 0 0 3 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 2000 0 0 1000 0 5 0 2 2 0 0 0 0 0 2 2 100 100 0 3 4 15.476119 15.476119 1481 Yes No No No No Yes No No Yes No No Yes No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No Yes Yes No No Yes No No No No No No No Yes No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) About once a week (52) 51 to 100 51 to 100 51 to 100 None None None None None None None 51 to 100 1 to 10 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 31 to 40 31 to 40 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 51 to 100 51 to 100 51 to 100 None None None None 51 to 100 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 1 to 10 Have not spent anything Have not spent anything 31 to 40 100+ 101 to 200 51 to 100 51 to 100 101 to 200 None None None None None None 51 to 100 25% to 49% 51 to 100 25% to 49% 1 to 10 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly agree (4) Don't know Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Very confident (4) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Rural England East of England Midlands White British White Yes No Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 19 19000 19000 0 0 0 0 0 0 0 0 0 0 5000 4000 0 1000 0 0 0 0 0 0 0 0 0 0 100 0 0 2 60 0 100 0 0 0 0 0 0 0 0 0 60 0 100 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 0 100 10 10 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 24000 1000 0 0 4000 19000 162 100 60 160 0 0 0 0 0 160 60 37.5 37.5 10 2 4 14.6100512 14.6100512 1483 Yes No No No No No No No Yes No No No No Yes No No No No Yes No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything 21 to 30 None 21 to 30 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Strongly disagree (-4) Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes No Yes 4 4 No Yes No Phone Rural England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 17 500 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 30 4 14.0663652 14.0663652 1510 Yes No No No No Yes No No Yes Yes No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None 1 to 10 Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Slightly agree (2) Yes No No Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England East Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 2500 2000 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 500 0 0 2000 0 4 0 2 2 0 0 0 0 0 2 0 0 0 0 2 4 14.6100512 14.6100512 1530 Yes No No No No Yes Yes No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes Yes No Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 20 to 30 Have not spent anything 20 to 30 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Don't know Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Don't know Don't know Slightly agree (2) Don't know Yes Yes No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No Yes No No Female 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Rural Wales Wales Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes CAWI Adults 19 200 0 0 200 0 0 3000 3000 0 2000 2000 0 1500 500 0 1000 0 0 0 3000 0 3000 0 800 800 0 4 1 1 1 0 1 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 1 0 1 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10500 10000 0 0 500 0 8 2 0 2 2 100 0 0 0 0 0 100 0 0 6 4 9.84904194 9.84904194 1531 Yes Yes Yes No No Yes No No Yes Yes Yes Yes No Yes Yes No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No Yes Yes No Yes Yes No No No Yes No No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 41 to 50 41 to 50 41 to 50 None None None None 31 to 40 75% to 99% 75% to 99% 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything 51 to 100 41 to 50 1 to 10 51 to 100 None None None None None None 31 to 40 75% to 99% 31 to 40 75% to 99% None None Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No Yes Yes Yes No No No No Not particularly confident (2) No Yes No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes Yes No Phone Urban England South East South Pakistani Minority Ethnic Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 17 0 0 0 0 0 0 0 0 0 0 0 0 2500 2500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 1 0 0 0 0 50 0 0 0 0 0 0 1 0 0 0 0 50 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 0 0 0 2500 0 51 50 1 51 0 0 0 0 0 51 40 78.4313736 78.4313736 0 0 5 10.8361282 10.8361282 1541 Yes Yes No No No Yes No No No No No No No Yes No No No Yes Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No 3 1 to 10 Have not spent anything 1 to 10 11 to 20 Have not spent anything Have not spent anything 11 to 20 None 11 to 20 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 1 to 10 31 to 40 None None Slightly disagree (-2) Don't know Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) No Yes No No No No No Yes Yes No No No Yes No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 Yes Yes No Phone Urban England South East South White British White No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 17 2500 0 500 2000 0 0 0 0 0 0 0 0 3500 1500 0 2000 0 0 0 2000 0 2000 0 1000 1000 0 20 0 0 4 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 4 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9000 7000 0 0 1500 500 34 0 0 0 0 0 0 0 0 0 0 0 0 0 34 4 16.0742931 16.0742931 1577 Yes No No No No Yes No No No No No No No Yes No No No Yes No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 3 3 2-3 times a week (130) 31 to 40 31 to 40 31 to 40 None None 100% 21 to 30 50% to 74% 31 to 40 100% 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 20 to 30 Have not spent anything 1 to 10 1 to 10 Have not spent anything 51 to 100 41 to 50 41 to 50 None None 1 to 10 25% to 49% 21 to 30 25% to 49% 41 to 50 75% to 99% 41 to 50 75% to 99% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Strongly disagree (-4) Yes Yes No Yes No Yes No No Yes No Yes No No No No No No No No No Yes Yes Yes Yes Yes No Yes Yes No No No Yes Yes No No No No No Yes Yes Yes No No Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes Yes No Phone Rural England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 19 2899 0 0 1000 0 2097 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 2000 2000 0 39 0 0 3 6 7 0 0 0 0 0 0 36 0 0 3 6 0 36 0 0 3 6 0 0 0 0 0 0 0 3 0 0 0 0 0 22 0 0 0 0 0 0 36 0 0 0 6 0 0 0 0 0 0 0 0 0 3 0 0 0 0 7 0 100 61.1111107 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4699 3000 0 699 1000 0 55 0 45 45 0 0 30 22 48.8888893 45 42 93.3333359 93.3333359 0 10 2 14.0663652 14.0663652 1597 Yes No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything None None None Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England South West South White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.60827494 2.60827494 122 Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No Yes Yes No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No Yes No No Yes Yes No No No No Yes No Yes No No No No Yes Yes No Yes No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None 1 to 10 100% None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) None 1 to 10 1 to 10 Have not spent anything 1 to 10 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 25% to 49% None None 50% to 74% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 20 to 30 1 to 10 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 25% to 49% None None 1 to 10 50% to 74% None None None 25% to 49% 1 to 10 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) No No No Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Working Full time None No Yes No No No No No 3 3 Yes No No Phone Rural England South West South White British White Yes No No No No No No No No No No No No Yes No No No No Yes No Yes No No Yes Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No Yes No Yes Yes No Yes No Yes Yes Yes No Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 18 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 700 0 700 0 6 0 0 0 6 0 3 0 0 0 6 0 0 0 0 0 0 0 3 0 0 0 6 0 0 0 0 0 4 0 0 0 0 0 0 0 3 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 3 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66.6666641 0 33.3333321 0 66.6666641 3700 3000 700 0 0 0 12 9 0 9 4 44.4444427 0 5 55.5555573 5 0 44.4444427 0 6 3 3 12.5739346 12.5739346 1609 Yes No No No No Yes No No Yes Yes Yes Yes No Yes No Yes No No No No No No Yes No No No No Yes No Yes No No Yes No Yes No No Yes No No No No Several times a day (730) Yes Yes No Yes Yes Yes No Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes Yes No No Yes Yes No Yes No No No No Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No Yes No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Every 2-3 weeks (30) 21 to 30 11 to 20 11 to 20 11 to 20 100% None None None 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 100+ 100+ 1 to 10 2-3 times a week (130) 2-3 times a week (130) 31 to 40 1 to 10 1 to 10 1 to 10 1 to 10 100% 1% to 24% 1 to 10 25% to 49% 100% 21 to 30 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) 100+ 100+ 1 to 10 Have not spent anything Have not spent anything Have not spent anything 51 to 100 11 to 20 1 to 10 21 to 30 21 to 30 75% to 99% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 31 to 40 Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) No No Yes No No No No No No No No No No Yes Yes No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 19 1500 0 0 1000 500 0 0 0 0 0 0 0 500 0 0 500 0 0 0 500 0 500 0 18350 18000 350 25 0 0 2 2 33 15 0 0 1 1 3 0 0 0 0 1 5 15 0 0 1 2 8 15 0 0 0 0 8 0 0 0 0 0 2 0 0 0 0 0 3 1 0 0 0 1 2 0 0 0 0 0 0 0 0 0 10 0 0 1 0 25 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 100 100 6.060606 37.5 0 100 20850 20000 850 0 0 0 62 20 6 26 23 88.4615402 3.38983059 3 11.5384617 3 3 100 100 0 36 3 14.9710493 14.9710493 1640 Yes No Yes Yes No No No No Yes Yes Yes Yes No Yes No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No No No Yes Yes No 5+ 5+ No Yes No Phone Urban England London South Any other Asian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 10.8361282 10.8361282 1644 Yes No No No No Yes No No Yes Yes No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No 5-6 days a week (286) No No No No Yes No Yes No No No No Yes Yes No No Yes No Yes No No No No No No No No No No No No No Yes No No No No No Yes No Yes No No No No Yes Yes No No Yes No Yes No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No 51 to 100 Have not spent anything Have not spent anything Have not spent anything 31 to 40 11 to 20 3 3 Every 2-3 weeks (30) 21 to 30 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 11 to 20 Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) 11 to 20 11 to 20 Have not spent anything 1 to 10 50% to 74% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 21 to 30 Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Every 2-3 weeks (30) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None None 1 to 10 100% 100% Very likely (4) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) 11 to 20 Have not spent anything 11 to 20 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 31 to 40 1 to 10 20 to 30 Have not spent anything 31 to 40 1 to 10 1 to 10 11 to 20 1 to 10 50% to 74% 11 to 20 50% to 74% 1 to 10 25% to 49% 1 to 10 100% 1 to 10 100% None 21 to 30 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England North West North White British White No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 9000 0 0 4000 2000 3000 2000 2000 0 0 0 0 3900 2400 0 0 1500 0 0 2000 0 2000 0 0 0 0 26 4 0 6 0 0 0 0 0 3 0 0 6 0 0 3 0 0 6 0 0 6 0 0 3 0 0 3 0 0 13 2 0 0 0 0 3 0 0 0 0 0 0 3 0 0 3 0 0 0 0 0 0 0 0 0 0 20 4 0 0 0 0 50 56.52174 50 100 100 0 50 0 0 0 0 0 0 0 0 50 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 14900 8000 3500 1000 2400 0 36 3 9 12 6 50 50 3 25 6 6 100 100 0 24 0 2.9604094 2.9604094 123 Yes Yes Yes No No Yes No No Yes Yes Yes Yes No Yes Yes No No No No No No No Yes No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes Yes No No No No No No Yes Yes Yes No Yes No Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No Yes Yes Yes No Yes No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 Every 2-3 weeks (30) Most days (365) 1001+ 1 to 10 501 to 1000 1001+ 501 to 1000 75% to 99% None 101 to 200 1% to 24% 51 to 100 75% to 99% 75% to 99% 1 to 10 Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) 51 to 100 31 to 40 31 to 40 About once a month (12) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 1 to 10 100% 100% Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 11 to 20 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 31 to 40 1 to 10 20 to 30 Have not spent anything 1001+ 11 to 20 1001+ 1001+ 501 to 1000 75% to 99% None None 101 to 200 1% to 24% 101 to 200 75% to 99% 101 to 200 75% to 99% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes Yes Yes Yes No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes Yes Yes No No No No Slightly confident (3) No Yes No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 No Yes No Phone Urban England London South White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 16 2299 0 0 799 0 1500 8000 4000 4000 0 0 0 3000 3000 0 0 0 0 0 2000 0 2000 0 0 0 0 1011 5 0 1 0 0 10 3 0 0 0 0 1000 1 0 1 0 0 1010 4 0 1 0 0 900 4 0 0 0 0 0 0 0 0 0 0 110 0 0 1 0 0 1 100 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 89.1089096 0 10.8910894 90.9090881 99.009903 100 0 0 0 100 0 0 0 0 0 0 0 100 100 100 100 0 0 0 0 0 0 0 0 0 0 14299 6799 4000 500 3000 0 1017 13 1002 1015 904 89.0640411 0 111 10.9359608 111 101 99.0147781 90.9909897 0 2 4 15.476119 15.476119 1657 Yes No Yes No No Yes No No No No No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes No No Yes Yes Yes No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 2-3 times a week (130) 21 to 30 1 to 10 11 to 20 21 to 30 None None None None None None None Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None None None 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 1 to 10 11 to 20 21 to 30 1 to 10 1% to 24% 1 to 10 100% None None None None None 1% to 24% None None Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No Yes No No No No Yes No No Yes No No No Yes Yes Yes Yes No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 3 3 Yes No No Phone Rural England South West South White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 0 0 1 3 0 6 0 0 0 0 0 15 0 0 1 3 0 21 0 0 1 3 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 6 19 25 1 4 100 0 0 24 0 4 0 0 0 3 10.8361282 10.8361282 1675 Yes No Yes Yes No Yes Yes No Yes Yes Yes Yes Yes Yes Yes Yes No Yes Yes No Yes No Yes No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes Yes No No No No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 2-3 times a week (130) Most days (365) 51 to 100 21 to 30 41 to 50 51 to 100 None None None None None None None Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None 50% to 74% 1 to 10 25% to 49% 1 to 10 50% to 74% None None None 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 Have not spent anything Have not spent anything 20 to 30 2-3 times a week (130) 101 to 200 101 to 200 101 to 200 None None None None None None None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 20 to 30 31 to 40 Have not spent anything 51 to 100 1 to 10 201 to 500 21 to 30 201 to 500 201 to 500 None None 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% None 1 to 10 Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes Yes Yes Yes No Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No Yes No No No Yes Yes No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Rural England North West North White British White Yes Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 18 1000 0 500 0 500 0 0 0 0 0 0 0 3600 2000 0 1000 0 0 600 3000 0 0 3000 2000 2000 0 80 3 0 20 200 5 30 0 0 0 0 0 50 3 0 15 200 0 80 3 0 15 200 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 5 0 0 10 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 5 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 60 33.3333321 66.6666641 0 0 0 0 0 0 0 0 0 0 0 0 12600 3000 3500 0 5600 500 308 30 268 298 0 0 30 5 1.67785239 298 3 1.00671136 1.00671136 0 10 4 11.7109346 11.7109346 1676 Yes No No No No Yes No No No Yes No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No Yes No No No No No No No Several times a day (730) No No No No Yes Yes No Yes No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 Have not spent anything 11 to 20 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 Have not spent anything 11 to 20 Have not spent anything 41 to 50 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None None None None None None None 50% to 74% None None Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Neither agree nor disagree (0) Yes Yes Yes No Yes No Yes Yes No No No No No Yes Yes No Yes No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 Yes No No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 4500 4500 0 0 0 0 0 0 0 0 0 1500 0 1500 0 0 0 0 2 5 0 0 0 0 2 5 0 0 0 0 0 0 0 0 0 0 2 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 6000 0 1500 0 4500 0 7 7 0 7 5 71.4285736 0 0 0 2 0 71.4285736 0 0 0 4 11.4285479 11.4285479 1715 Yes Yes Yes No No Yes No No No No Yes No No Yes No No No Yes No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes Yes No No Yes No Yes No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No Yes No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Married\\Living as Married Not working Not working not looking None No Yes No No No No No 2 2 Yes Yes No Phone Urban England East Midlands Midlands White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 1200 1200 0 0 0 0 0 0 0 0 0 600 600 0 2 0 0 3 2 1 2 0 0 0 0 0 0 0 0 3 2 0 2 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 1800 600 0 0 1200 0 8 2 5 7 0 0 0 0 0 7 7 100 100 0 1 2 14.6100512 14.6100512 1716 Yes No No Yes Yes Yes No No Yes Yes No Yes No Yes No Yes No No No Yes No No No No No No No No No No Yes No No No No No Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 21 to 30 21 to 30 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None None Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) No No No No No No No Yes Yes No No No No No No No No No No No No Yes Yes Yes No No Yes No No No No No No No No No No No Slightly confident (3) Yes Yes No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 600 0 0 0 600 0 25 0 25 25 0 0 0 0 0 25 25 100 100 0 0 4 16.0742931 16.0742931 1753 Yes No No No No Yes Yes No Yes Yes No No No Yes No No No Yes Yes No No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 21 to 30 11 to 20 1 to 10 21 to 30 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No Yes No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban England East of England Midlands White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes CAWI Adults 16 0 0 0 0 0 0 0 0 0 0 0 0 6000 2000 1000 3000 0 0 0 1500 0 1500 0 0 0 0 5 0 0 9 0 0 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6500 4500 0 0 2000 0 14 5 0 5 0 0 0 0 0 5 5 100 100 0 9 4 9.84904194 9.84904194 1768 Yes No Yes No No Yes No No Yes Yes No No No Yes No No No No No No No No No No Yes No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes No No Yes Yes Yes Yes No No No No No No No No No No Yes No No No No Yes No No Yes No No No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No Yes No No No Yes No No No Yes No No No No No 100+ 51 to 100 51 to 100 Have not spent anything 11 to 20 1 to 10 3 3 Less often (6) Most days (365) 1001+ 31 to 40 1001+ 1001+ 201 to 500 25% to 49% 1% to 24% 1001+ 50% to 74% 1001+ 100% 100% 11 to 20 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Every 2-3 weeks (30) 11 to 20 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 31 to 40 31 to 40 31 to 40 None None None None 31 to 40 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 1 to 10 1 to 10 Have not spent anything 51 to 100 1001+ 41 to 50 1001+ 1001+ 201 to 500 25% to 49% 51 to 100 1% to 24% 1001+ 50% to 74% 1001+ 100% 1001+ 100% None 21 to 30 Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Yes Yes Yes No Yes No No Yes No No No No No Yes Yes Yes Yes Yes Yes No No No No Yes No No No No Yes Yes Yes Yes Yes No No Yes No No No Yes Yes No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England Yorkshire and The Humber North White Irish White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 17 12899 8500 0 1500 100 2997 2000 2000 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 1560 3 12 2 39 4 40 0 10 0 0 0 1500 0 0 2 39 0 1540 0 10 2 39 0 400 0 0 0 0 0 100 0 0 0 0 0 1140 0 0 0 0 0 0 1140 0 10 2 39 0 0 0 0 0 0 0 0 0 20 3 2 0 0 4 25.9740257 23.8095245 74.0259705 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 16599 7000 100 999 0 8500 1620 50 1541 1591 400 25.1414204 23.3100243 1140 71.6530457 1191 1191 100 100 0 29 4 14.413929 14.413929 1780 Yes No No No No Yes No No Yes No No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 501 to 1000 501 to 1000 501 to 1000 None None None None 501 to 1000 100% 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None None None None Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 501 to 1000 501 to 1000 501 to 1000 None None None None 1 to 10 None 501 to 1000 75% to 99% 501 to 1000 75% to 99% None None Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Yes No No Yes No No No No No No No No No No No No No No No No Yes Yes Yes Yes No Yes Yes No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 2 2 No Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 600 0 0 1 2 0 0 0 0 0 0 0 600 0 0 1 2 0 600 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 600 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 603 0 603 603 0 0 0 1 0.165837482 603 602 99.8341599 99.8341599 0 0 2 11.4285479 11.4285479 1803 Yes No No Yes No Yes No No Yes Yes No Yes No Yes No No No Yes No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 51 to 100 51 to 100 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 21 to 30 21 to 30 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England London South White & Asian Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 10000 10000 0 0 0 0 3 15 10 0 0 0 0 0 0 0 0 0 3 15 3 0 0 0 3 15 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 15 3 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 100 100 13000 10000 0 0 3000 0 28 0 21 21 0 0 0 0 0 21 21 100 100 0 7 0 2.60827494 2.60827494 124 Yes No No No No Yes No No Yes No No Yes No Yes Yes No No No No No Yes No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Don't know Neither agree nor disagree (0) Don't know Slightly disagree (-2) Yes No No Yes No No Yes No No No No No No No No No No No No No Yes Yes Yes Yes No Yes Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 No Yes No Phone Rural England East of England Midlands White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 4 0 4 4 0 0 0 0 0 4 4 100 100 0 0 4 14.6100512 14.6100512 1814 Yes No Yes No No Yes Yes No Yes No No Yes No Yes No No No No No Yes No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) No No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No Yes No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything None None None Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Don't know Don't know Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England London South White British White No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Kids 15 0 0 0 0 0 0 0 0 0 0 0 0 730 730 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 730 0 0 0 730 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.60827494 2.60827494 125 Yes No Yes Yes No Yes No No Yes Yes No No No Yes No Yes No No No No Yes No No No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Once a day (365) Yes Yes No No Yes Yes No Yes No No No Yes Yes No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No Yes No Yes No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 2-3 times a week (130) 21 to 30 21 to 30 1 to 10 21 to 30 None None None None 21 to 30 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 51 to 100 21 to 30 21 to 30 51 to 100 None None None None None None None 1 to 10 Have not spent anything 1 to 10 Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 1 to 10 1% to 24% None None None None None 1% to 24% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 1 to 10 Have not spent anything 1 to 10 Have not spent anything 101 to 200 51 to 100 31 to 40 101 to 200 1 to 10 1% to 24% None None None None 21 to 30 25% to 49% 21 to 30 25% to 49% None None Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Yes No Yes Yes No No No Yes No No No No No Yes No Yes No No No Yes No No No No No No No No Yes No Yes No Yes Yes No No No No No Yes No No No No No No No No Yes Yes No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No No No Yes Yes Yes 5+ 5+ No Yes No Phone England North East North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 17 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 199 0 199 27 0 0 8 60 13 25 0 0 0 30 13 2 0 0 8 30 0 27 0 0 8 60 13 0 0 0 8 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 15.3846149 0 0 0 15.3846149 1199 0 199 0 1000 0 108 68 40 108 10 9.25925922 0 0 0 98 27 34.2592583 27.5510197 0 0 5 14.9710493 14.9710493 1818 Yes No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No Yes Yes No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 19 0 0 0 0 0 0 3500 3500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 3500 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 14.0663652 14.0663652 1869 Yes No Yes No No Yes No No Yes No No No No Yes No No No No No Yes No No No No No No No No No No Yes No Yes No No Yes Yes No No No No No Several times a day (730) No No Yes No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No Yes Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 11 to 20 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Don't know Don't know Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Yes Yes No Yes No No No Yes No No No No No Yes Yes Yes No No No No Yes No No No Yes Yes No No No Yes No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South East South White British White No Yes No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 12 0 0 0 0 0 0 2000 2000 0 0 0 0 3600 1500 1100 1000 0 0 0 600 600 0 0 1000 1000 0 3 4 0 2 1 2 0 3 0 0 0 0 3 0 0 0 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 1 2 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5500 4000 0 0 1500 0 12 3 3 6 0 0 0 0 0 6 6 100 100 0 6 0 2.60827494 2.60827494 126 Yes No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No Yes No No No No Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No Yes No No Yes No No No Yes Yes No No Yes No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) About once a week (52) 51 to 100 51 to 100 51 to 100 None None None None 1 to 10 1% to 24% 51 to 100 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Most days (365) Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything 101 to 200 101 to 200 101 to 200 1 to 10 1% to 24% None None None None 101 to 200 100% 101 to 200 100% 1 to 10 None Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South West South White British White No Yes Yes No No Yes No Yes Yes No No No Yes No Yes Yes No No Yes No Yes Yes No No No Yes No Yes Yes Yes No No Yes No Yes No No No Yes No Yes Yes No No Yes No Yes Yes No No No Yes No Yes Yes No No Yes No Yes Yes No No No Yes No Yes Yes No No Yes No Yes Yes No No No Yes No Yes Yes No Yes No No Yes Yes No No No Yes CAWI Kids 13 0 0 0 0 0 0 0 0 0 0 0 0 2100 2100 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 100 1 3 0 0 0 0 0 0 1 1 1 100 1 3 1 1 1 100 1 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 1 0 100 1 3 1 1 1 1 1 3 1 1 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 100 0 0 0 100 0 0 0 3 100 100 0 0 0 100 100 0 0 0 100 100 2100 0 0 0 2100 0 107 0 107 107 1 0.934579432 0 0 0 106 106 100 100 8 0 0 2.70298147 2.70298147 127 Yes No No No No No No No Yes Yes No No No Yes No No No Yes No No No No No No No No No Yes No No No Yes No No No Yes Yes No No No No No Once a day (365) No Yes No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 100% 1 to 10 41 to 50 20 to 30 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 100% Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Kids 14 0 0 0 0 0 0 1000 1000 0 0 0 0 3299 1800 499 1000 0 0 0 598 299 299 0 599 599 0 0 2 0 3 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 3 1 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 100 0 0 0 4698 2898 0 0 1800 0 9 0 0 0 0 0 100 0 0 0 0 0 0 0 9 0 3.06872106 3.06872106 128 Yes No No No No Yes No No Yes Yes No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No Yes No No No Yes No No No No Yes No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Don't know Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes Yes No 5+ 5+ Yes No No Phone Rural Scotland Scotland North White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No CAWI Adults 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 14.2901106 14.2901106 1871 Yes Yes Yes No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No Yes No No Yes Yes Yes No No No No Yes No Yes No Yes No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No Yes Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Don't know 1 to 10 None 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 25% to 49% 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 11 to 20 1 to 10 1% to 24% Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) No No Yes No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Working Part time Any Yes No No Yes No No Yes 4 4 Yes No No Phone Urban England London South White British White No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No CAWI Adults 19 0 0 0 0 0 0 6000 6000 0 0 0 0 2500 1500 500 500 0 0 0 1800 800 1000 0 0 0 0 0 10 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 10 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33.3333321 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9000 7500 0 0 1500 0 15 0 0 0 0 0 6.66666651 0 0 0 0 0 0 1 15 4 15.476119 15.476119 1879 Yes Yes Yes No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No Yes Yes No No No No No No Several times a day (730) No No No No Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 21 to 30 21 to 30 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None 1 to 10 Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes Yes No Yes Yes No No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No Yes No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Urban England East of England Midlands Any other Asian Minority Ethnic No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 19 0 0 0 0 0 0 4000 4000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2 0 1 13 0 0 0 0 0 0 0 10 0 0 1 13 0 10 0 0 1 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 1 13 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 4000 4000 0 0 0 0 26 0 24 24 0 0 0 0 0 24 24 100 100 0 2 4 11.4285479 11.4285479 1886 Yes No Yes Yes Yes Yes No Yes Yes Yes Yes Yes No Yes Yes No No No No No No No No No Yes No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None None Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 100% Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 1 to 10 100% 1 to 10 50% to 74% 1 to 10 75% to 99% 1 to 10 75% to 99% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 1 1 0 1 1 1 1 1 0 0 1 0 0 0 0 1 2 1 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 1 1 0 0 0 1 0 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 50 100 100 0 0 100 100 100 0 0 0 100 100 100 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 6 5 1 6 1 16.666666 100 3 50 5 4 83.3333359 80 0 0 4 11.7109346 11.7109346 1890 Yes No No No No Yes No No No No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No Yes Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No 3 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 20 to 30 Have not spent anything Have not spent anything 11 to 20 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 4 4 Yes Yes No Phone Urban England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 19 3000 2000 0 1000 0 0 900 900 0 0 0 0 1100 1100 0 0 0 0 0 0 0 0 0 799 799 0 2 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5799 2699 0 0 1100 2000 5 0 1 1 0 0 0 0 0 1 1 100 100 0 4 4 11.4285479 11.4285479 1900 Yes Yes Yes Yes No No No No No No No No No Yes No No No No Yes No Yes No Yes No No No No Yes No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) Most days (365) 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 1 to 10 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 None Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Yes No No No No No No No No No No No No Yes No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes Yes No Phone Urban England West Midlands Midlands White British White Yes No Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No Yes Yes No CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 1000 0 1 1 0 1 0 0 0 0 0 1 0 0 0 1 0 3 14.0663652 14.0663652 1909 Yes No Yes No No Yes No No No No No Yes No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes Yes Yes Yes No Yes Yes No No No No Yes Yes No No No No Yes No No No No Yes No No Yes No No No No No No No Yes Yes No No No Yes Yes No No No No Yes Yes No No No No Yes No No No No No Yes Yes No No No No No No Yes Yes No No No Yes No No Yes Yes No No No Yes No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a month (12) Most days (365) 2-3 times a week (130) 51 to 100 1 to 10 51 to 100 51 to 100 None None 100% None None 51 to 100 100% 100% 501 to 1000 1 to 10 1 to 10 11 to 20 Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 11 to 20 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 101 to 200 11 to 20 51 to 100 51 to 100 None None 11 to 20 75% to 99% None None 51 to 100 100% 51 to 100 100% 1 to 10 21 to 30 Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes No No No No No Yes No No No No No Yes Yes Yes Yes No Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 3 3 Yes No No Phone Urban England South East South White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 18 1500 0 0 1500 0 0 6000 6000 0 0 0 0 2550 700 0 1500 0 0 350 0 0 0 0 0 0 0 85 2 10 2 5 0 5 0 10 0 0 0 60 0 0 0 5 0 65 0 10 0 5 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 65 0 10 0 5 0 1000 10 10 0 0 0 0 0 20 2 0 2 0 0 0 100 0 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 10050 9000 0 0 1050 0 104 15 65 80 0 0 83.3333359 0 0 80 80 100 100 10 24 3 15.476119 15.476119 1911 Yes No No No No Yes No No Yes No No No No Yes No No No No No Yes No No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 21 to 30 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 31 to 40 21 to 30 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Neither agree nor disagree (0) No Yes No No No No No No Yes No No No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England North West North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 4200 1500 0 2000 0 0 700 500 0 500 0 1000 1000 0 0 0 0 2 30 3 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5700 3500 0 0 2200 0 35 0 30 30 0 0 0 0 0 30 30 100 100 0 5 2 14.413929 14.413929 1914 Yes No No No No Yes No No Yes Yes No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything 11 to 20 None 11 to 20 100+ 41 to 50 Have not spent anything Have not spent anything 51 to 100 Have not spent anything 11 to 20 None None Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Married\\Living as Married Not working Not working not looking Any Yes No Yes No No No Yes 3 3 Yes No No Phone Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 19 0 0 0 0 0 0 3000 3000 0 0 0 0 8000 7000 0 0 0 0 1000 0 0 0 0 2000 2000 0 0 2 0 0 0 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13000 5000 0 0 8000 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 13 3 11.6103354 11.6103354 1923 Yes Yes Yes Yes No Yes Yes No Yes Yes Yes Yes No Yes Yes No No No Yes No Yes Yes Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes No Yes Yes Yes Yes No No No Yes Yes No No No No No No No No No Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes No Yes No Yes No No No No Yes No No No No No No No No No No Yes Yes Yes No No Yes No No Yes No Yes Yes No Yes Yes No Yes No Yes Yes No Yes Yes No 3 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Less often (6) Most days (365) Every 2-3 weeks (30) 1001+ 21 to 30 501 to 1000 1001+ None None 75% to 99% 201 to 500 25% to 49% 1001+ 100% 100% 501 to 1000 1 to 10 1 to 10 51 to 100 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 41 to 50 41 to 50 Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 75% to 99% 1 to 10 25% to 49% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None None 1 to 10 25% to 49% None None 1 to 10 100% 100% 1 to 10 Likely (3) Likely (3) Likely (3) Likely (3) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 1 to 10 Have not spent anything 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 1 to 10 25% to 49% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 1 to 10 Have not spent anything 1 to 10 1 to 10 1001+ 31 to 40 1001+ 1001+ 1 to 10 None 51 to 100 75% to 99% 501 to 1000 25% to 49% 1001+ 100% 1001+ 100% 1 to 10 51 to 100 Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes Yes Yes No Yes Yes Yes Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No Yes Yes No Yes No No No No No No No No No No No No No No No Yes No No No No No Not at all confident (1) No No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes Yes No Phone Urban England North West North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes No No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 18 2500 0 500 1000 1000 0 5000 5000 0 0 0 0 2000 1000 0 1000 0 0 0 1000 0 1000 0 0 0 0 1090 8 1 6 3 0 30 1 1 1 3 0 1000 2 0 2 0 0 1030 3 1 3 3 0 0 1 0 0 0 0 50 5 0 0 0 0 500 1 1 1 1 0 0 1030 2 1 3 3 0 1000 5 5 0 0 0 0 0 60 5 0 3 0 0 0 83.3333359 48.5436897 100 100 33.3333321 83.3333359 33.3333321 100 100 0 0 100 100 100 0 0 33.3333321 0 100 100 0 0 33.3333321 100 100 0 0 0 0 0 10500 8000 1000 0 1000 500 1108 36 1004 1040 1 0.0961538479 79.710144 504 48.4615402 1039 1039 100 100 5 68 2 14.413929 14.413929 1926 Yes No No No No No No No Yes Yes Yes Yes No Yes No Yes No No No No Yes No No No No No No No No No No Yes Yes No No No No No No No No No Once a day (365) Yes No No No No No No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England North West North White British White Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 540 540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 7 0 0 0 0 0 0 0 0 0 0 6 7 0 0 0 0 6 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 540 0 0 0 540 0 13 0 13 13 0 0 0 0 0 13 13 100 100 0 0 3 14.413929 14.413929 1942 Yes No Yes No No No No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No No No No Yes No No No No No No Once a day (365) Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 3 Have not spent anything Have not spent anything Every 2-3 weeks (30) 21 to 30 21 to 30 21 to 30 21 to 30 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 20 to 30 Have not spent anything 20 to 30 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 41 to 50 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 20 to 30 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 100+ 1 to 10 51 to 100 Have not spent anything 41 to 50 Have not spent anything 31 to 40 21 to 30 1 to 10 31 to 40 21 to 30 75% to 99% None None 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) No No Yes No No No No Yes No No No No No No No Yes Yes No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban Wales Wales Midlands White British White Yes No No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 15 3000 0 0 0 3000 0 2500 0 2500 0 0 0 7000 5000 2000 0 0 0 0 4000 3000 1000 0 0 0 0 30 2 0 0 3 0 30 0 0 0 0 0 0 2 0 0 0 0 30 2 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 100 0 0 0 100 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11500 1000 5500 0 5000 0 35 30 2 32 30 93.75 0 2 6.25 2 2 100 100 0 3 0 3.06872106 3.06872106 129 Yes No Yes No Yes Yes No No Yes No No Yes No Yes No Yes No No No No Yes No Yes No Yes No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No No No Yes No Yes No Yes Yes No No No No No No No Yes Yes No No Yes No No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes Yes No No Yes No 51 to 100 41 to 50 Have not spent anything 41 to 50 11 to 20 1 to 10 Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) 51 to 100 21 to 30 41 to 50 51 to 100 None None 100% None None 41 to 50 50% to 74% 50% to 74% 1 to 10 Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 51 to 100 51 to 100 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 51 to 100 51 to 100 Have not spent anything 1 to 10 41 to 50 51 to 100 31 to 40 51 to 100 51 to 100 1 to 10 1% to 24% 1 to 10 25% to 49% None None 51 to 100 50% to 74% 51 to 100 50% to 74% None 1 to 10 Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Slightly disagree (-2) Yes Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes Yes Yes Yes No No No No No No Yes No No No No No Yes Yes Yes No No No No No No Yes Yes No No No No No No No No No No No No No No No No No Yes No No Yes Yes Yes Yes Yes Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No Yes No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 17 8000 0 5000 2000 1000 0 14000 7000 7000 0 0 0 650 650 0 0 0 0 0 0 0 0 0 0 0 0 83 4 3 3 0 0 30 2 3 0 0 0 50 0 0 3 0 0 80 2 3 3 0 0 0 2 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 50 0 3 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 100 0 62.5 62.5 100 0 0 0 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22650 9000 8000 0 650 5000 93 35 53 88 2 2.27272725 42.8571434 0 0 86 53 62.5 61.6279068 0 5 3 11.7109346 11.7109346 1957 Yes No Yes No No Yes Yes No Yes No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Rural Northern Ireland Northern Ireland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Kids 15 0 0 0 0 0 0 0 0 0 0 0 0 1200 1200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 1200 0 0 0 1200 0 2 0 2 2 0 0 0 0 0 2 2 100 100 0 0 0 2.30761623 2.30761623 130 Yes No Yes No No Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No Yes Yes No No No No Yes Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No Yes No No 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 3 11 to 20 11 to 20 Every 2-3 weeks (30) About once a week (52) 51 to 100 21 to 30 31 to 40 51 to 100 21 to 30 25% to 49% 100% None None None None 25% to 49% Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None 21 to 30 Have not spent anything 21 to 30 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 51 to 100 11 to 20 51 to 100 1 to 10 1 to 10 Have not spent anything 51 to 100 21 to 30 41 to 50 51 to 100 21 to 30 25% to 49% 21 to 30 75% to 99% None None 1 to 10 1% to 24% 1 to 10 25% to 49% None 1 to 10 Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No Yes Yes Yes Yes No No No No No No No Yes Yes Yes No Yes No No No Yes No No No No Yes No Yes No No No No Yes No No No No Yes No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No No No No Yes No Yes Yes Yes No Yes Yes Yes No Yes No Yes Yes No No No No Slightly confident (3) Yes No No No No No No No No No Yes Yes No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 Yes No No Phone Rural England West Midlands Midlands White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 17 4200 0 0 0 2400 1800 0 0 0 3000 0 3000 800 800 0 0 0 0 0 0 0 0 0 1500 1500 0 64 0 1 0 0 5 24 0 1 0 0 0 40 0 0 0 0 1 64 0 1 0 0 1 24 0 1 0 0 0 24 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 4 37.5 100 0 0 37.5 0 0 0 0 0 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 8300 1500 5400 600 800 0 70 25 41 66 25 37.878788 86.2068939 0 0 41 1 39.39394 2.43902445 0 4 4 14.0663652 14.0663652 1971 Yes No No No No No No No Yes Yes No No No Yes No No No No No No No No Yes No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No No No Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 3 3 About once a week (52) 1 to 10 1 to 10 1 to 10 None None 1 to 10 1% to 24% 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything 1 to 10 11 to 20 Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly disagree (-4) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No Yes No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No Yes No No Yes 5+ 5+ No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 18 3000 0 0 0 0 3000 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 4000 4000 0 10 0 0 0 0 4 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 20 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6500 4000 0 1000 1500 0 14 0 10 10 0 0 0 2 20 10 10 100 100 0 4 5 14.413929 14.413929 1976 Yes Yes Yes No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No Yes No Yes Yes Yes Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 100% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 Have not spent anything Have not spent anything 1 to 10 11 to 20 21 to 30 11 to 20 11 to 20 None None None None None None 11 to 20 100% 11 to 20 100% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Don't know Slightly disagree (-2) Slightly disagree (-2) No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 3 3 Yes No No Phone Urban England East of England Midlands Caribbean Minority Ethnic Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 19 1500 1500 0 0 0 0 0 0 0 0 0 0 700 700 0 0 0 0 0 0 0 0 0 4000 4000 0 6 0 0 5 4 6 0 0 0 0 0 0 6 0 0 5 4 0 6 0 0 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 6 0 0 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 100 0 0 0 0 0 6200 4000 0 0 700 1500 21 0 15 15 0 0 0 0 0 15 15 100 100 0 6 3 11.4285479 11.4285479 1983 Yes Yes Yes No No Yes No No Yes Yes Yes Yes No Yes Yes No No Yes No No No No No No No No No No No No Yes No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes No Yes No No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes Yes No No No No No Yes No Yes No No Yes No No 100+ 100+ 51 to 100 3 Have not spent anything Have not spent anything 3 3 About once a month (12) Most days (365) 41 to 50 21 to 30 11 to 20 41 to 50 41 to 50 100% None None None 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 41 to 50 41 to 50 41 to 50 None None None None 41 to 50 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything 1 to 10 1 to 10 1 to 10 100+ 101 to 200 31 to 40 51 to 100 101 to 200 51 to 100 50% to 74% None None None None 51 to 100 100% 51 to 100 100% None None Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes Yes No Yes Yes No Yes Yes No No No No Yes Yes Yes No No Yes Yes No No No No No No No No Yes Yes Yes Yes Yes No Yes No No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 19 15500 10000 2500 0 0 3000 500 0 500 0 0 0 600 600 0 0 0 0 0 0 0 0 0 0 0 0 50 3 0 1 50 0 30 3 0 0 0 0 20 0 0 1 50 0 50 3 0 1 50 0 50 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 14600 0 500 1000 600 12500 104 33 71 104 53 50.9615402 0 0 0 51 51 100 100 0 0 4 15.476119 15.476119 2014 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No Yes No No No No No No No No Yes Yes Yes No No Yes Yes No No No No Yes Yes No No No No No No No No No Yes No Yes No No No No No No No No Yes Yes Yes No No Yes Yes No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) Less often (6) 101 to 200 1 to 10 51 to 100 101 to 200 None None None None 101 to 200 100% 100% 501 to 1000 1 to 10 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 11 to 20 Have not spent anything Have not spent anything 1 to 10 11 to 20 101 to 200 1 to 10 101 to 200 101 to 200 None None None None None None 101 to 200 100% 101 to 200 100% 1 to 10 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) Yes Yes No Yes No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes E Not married Not working Not working not looking Any Yes No No No Yes Yes Yes 4 4 No Yes No Phone Urban England Yorkshire and The Humber North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 17 1500 1500 0 0 0 0 0 0 0 0 0 0 1100 600 0 500 0 0 0 0 0 0 0 1500 1500 0 102 5 0 2 20 3 2 2 0 0 0 0 100 3 0 0 20 0 102 5 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 102 5 0 0 20 0 1000 1 1 0 0 0 0 0 0 0 0 2 0 3 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4100 2000 0 0 600 1500 132 4 123 127 0 0 0 0 0 127 127 100 100 1 5 4 10.0924006 10.0924006 2026 Yes No Yes No Yes Yes No No Yes Yes No Yes No Yes No No No Yes No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes No Yes No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes Yes Yes No No Yes No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes Yes No No No No No No Yes Yes No No No No 100+ 100+ 100+ 11 to 20 3 1 to 10 Have not spent anything Have not spent anything About once a month (12) Most days (365) 51 to 100 11 to 20 41 to 50 51 to 100 51 to 100 100% None 1 to 10 1% to 24% 100% 21 to 30 Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 51 to 100 51 to 100 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 21 to 30 11 to 20 Have not spent anything 31 to 40 Have not spent anything Have not spent anything 1 to 10 1 to 10 None 1 to 10 41 to 50 Have not spent anything 31 to 40 1 to 10 About once a week (52) About once a month (12) 21 to 30 11 to 20 11 to 20 21 to 30 11 to 20 25% to 49% None None None 11 to 20 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 11 to 20 Have not spent anything 20 to 30 100+ 101 to 200 21 to 30 51 to 100 51 to 100 51 to 100 75% to 99% None None 1 to 10 1% to 24% 11 to 20 100% 11 to 20 100% None 41 to 50 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes No No No No No Yes No No No No No No No No Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 18 21000 15000 2000 3000 1000 0 10000 10000 0 0 0 0 6200 1200 0 4000 0 0 1000 4600 0 4000 600 499 499 0 95 7 0 4 27 1 15 1 0 0 12 0 50 0 0 0 15 0 65 1 0 0 27 0 65 1 0 0 12 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 30 6 0 4 0 1 100 0 7.69230747 0 100 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 44.4444427 0 0 100 100 0 0 0 0 0 42899 21499 1600 0 2800 17000 134 28 65 93 78 83.8709641 0 5 5.3763442 15 15 100 100 0 41 2 9.84904194 9.84904194 2027 Yes Yes Yes No No Yes No No Yes Yes No No No Yes Yes Yes No No No No Yes No Yes No No No No Yes No Yes Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No Yes Yes Yes No No No No No Yes Yes No Yes Yes Yes Yes No No No No Yes Yes No No No No No No No No No Yes No No Yes Yes Yes No No No No No Yes Yes No Yes Yes Yes Yes No No No No Yes Yes No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None 1 to 10 50% to 74% 1 to 10 50% to 74% 50% to 74% 1 to 10 1 to 10 1 to 10 Very likely (4) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Don't know Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% 41 to 50 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 31 to 40 Have not spent anything Most days (365) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 100% 1 to 10 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very Unlikely (1) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 31 to 40 31 to 40 31 to 40 Most days (365) Most days (365) 31 to 40 1 to 10 21 to 30 31 to 40 31 to 40 100% None None None 100% 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 31 to 40 31 to 40 51 to 100 Have not spent anything 41 to 50 1 to 10 31 to 40 41 to 50 31 to 40 75% to 99% 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 75% to 99% 1 to 10 75% to 99% 1 to 10 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes Yes No Phone Urban England South West South White British White Yes Yes Yes No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 4800 1600 0 0 0 3200 0 10800 3600 3600 3600 1600 1600 0 2 0 2 8 32 2 1 0 1 3 1 0 1 0 1 5 30 0 2 0 2 8 31 0 0 0 2 4 31 0 0 0 2 4 0 0 1 0 0 4 0 0 4 1 0 0 4 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 2 0 0 50 50 50 0 0 0 0 0 100 100 0 0 100 50 100 50 50 100 100 100 0 0 0 100 0 0 0 0 0 17200 5200 3600 3200 5200 0 46 6 37 43 37 86.0465088 15 5 11.6279068 6 5 97.6744156 83.3333359 1 3 5 15.476119 15.476119 2036 Yes Yes No No No Yes No No Yes Yes Yes Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No No No No No No No No No Several times a day (730) No No No No Yes No Yes No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No Yes No Yes No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None 100% 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 50% to 74% 50% to 74% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 1 to 10 1 to 10 11 to 20 None None 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 75% to 99% 1 to 10 75% to 99% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Yes Yes Yes Yes Yes Yes No Yes No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes Yes Yes Yes No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No Yes No No No No No No Very confident (4) No No No No No No No No No No No No No No Yes No No No No Yes No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 2 2 No No Yes Phone Urban Wales Wales Midlands Any other Asian Minority Ethnic No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 2600 1600 0 1000 0 0 0 0 0 0 0 7000 7000 0 5 0 0 7 2 8 0 0 0 4 0 0 5 0 0 2 2 0 5 0 0 6 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 2 5 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 8 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 100 16.666666 33.3333321 50 50 0 0 0 100 100 0 0 0 0 0 9600 8000 0 0 1600 0 22 4 9 13 0 0 11.1111107 1 7.69230747 13 10 76.9230804 76.9230804 0 9 2 14.6100512 14.6100512 2041 Yes No No No No Yes No No Yes Yes Yes Yes No Yes Yes Yes No No Yes Yes No No No No No No No Yes No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes No No No No No No No Yes No Yes No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) 41 to 50 1 to 10 31 to 40 41 to 50 None None 1 to 10 1% to 24% None None None Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None 1 to 10 100% None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 1 to 10 51 to 100 51 to 100 None None None None 11 to 20 1% to 24% 11 to 20 25% to 49% 11 to 20 25% to 49% None 1 to 10 Slightly disagree (-2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Yes Yes Yes Yes Yes No No Yes Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban Scotland Scotland North White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1500 0 44 0 0 1 20 2 4 0 0 0 0 0 40 0 0 1 20 0 44 0 0 1 20 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 1 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 22.727272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 100 100 0 0 0 0 0 1500 1500 0 0 0 0 67 4 61 65 0 0 0 11 16.9230766 65 20 30.7692299 30.7692299 0 2 4 11.6103354 11.6103354 2053 Yes No Yes No No Yes No No Yes Yes No No No Yes No No No No No No Yes No No No No No No No No Yes No No Yes No No Yes No No No No No No 5-6 days a week (286) Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No No No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything About once a month (12) About once a week (52) 41 to 50 1 to 10 11 to 20 21 to 30 11 to 20 75% to 99% 50% to 74% None None 1 to 10 100% 100% 11 to 20 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 1 to 10 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 31 to 40 1 to 10 Have not spent anything 1 to 10 Have not spent anything 41 to 50 1 to 10 21 to 30 21 to 30 11 to 20 75% to 99% 11 to 20 25% to 49% None None 1 to 10 100% 1 to 10 100% None 21 to 30 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Yes No Yes Yes No No No Yes No No No No No No No No Yes Yes No No No No No No No No No No Yes Yes Yes No Yes No No No No No No No Yes No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban Scotland Scotland North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 13 3000 0 0 2000 1000 0 0 0 0 0 0 0 2400 1000 200 1200 0 0 0 0 0 0 0 600 600 0 45 0 0 1 1 1 5 0 0 0 0 0 20 0 0 0 1 0 25 0 0 0 1 0 20 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 1 0 0 0 0 0 0 0 0 0 20 0 0 1 0 1 80 50 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5800 3800 1000 0 1000 0 48 5 21 26 20 76.9230804 47.6190491 0 0 6 6 100 100 0 22 0 4.59556198 4.59556198 131 Yes No Yes No No Yes Yes Yes Yes Yes Yes Yes No Yes Yes No No Yes Yes No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No Yes Yes Yes Yes No No No No Yes Yes No No No No Yes No No No No Yes Yes Yes Yes Yes No No No No No No Yes Yes No Yes Yes Yes Yes No No No No Yes Yes No No No No Yes No No No No No No Yes No No Yes No No No No Yes No No Yes No No No No Yes Yes No Yes No No 3 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 About once a week (52) Most days (365) Every 2-3 weeks (30) 501 to 1000 201 to 500 201 to 500 501 to 1000 201 to 500 50% to 74% 75% to 99% 21 to 30 1% to 24% 201 to 500 100% 100% 1001+ 201 to 500 201 to 500 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 20 to 30 Have not spent anything 20 to 30 Less often (6) 11 to 20 11 to 20 11 to 20 1 to 10 50% to 74% None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything Every 2-3 weeks (30) About once a week (52) 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 25% to 49% 1 to 10 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 41 to 50 41 to 50 41 to 50 None None 11 to 20 25% to 49% 41 to 50 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 1 to 10 20 to 30 1 to 10 Have not spent anything 11 to 20 501 to 1000 201 to 500 501 to 1000 501 to 1000 201 to 500 25% to 49% 201 to 500 50% to 74% 41 to 50 1% to 24% 201 to 500 100% 201 to 500 100% 201 to 500 1 to 10 Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Yes Yes Yes Yes Yes No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes Yes No No No Yes No No No No Very confident (4) No No No No No No No No No No No No No No No No No No Yes No No Male 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes Yes No Phone Urban England North West North White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes No No No Yes No Yes Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 19 2900 1400 0 0 0 1500 3000 0 3000 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 750 12 11 3 50 0 250 12 5 2 0 0 500 0 5 1 50 0 750 12 10 3 50 0 400 6 1 0 0 0 300 0 0 0 0 0 30 0 0 0 20 0 1 350 6 9 3 50 0 3000 500 500 0 0 0 0 0 0 0 1 0 0 0 53.3333321 75 4 100 100 50 0 0 100 100 10 0 0 100 100 0 0 0 33.3333321 100 100 0 0 40 100 100 0 0 0 0 0 5100 200 3000 500 0 1400 826 269 556 825 407 49.3333321 73.5294113 50 6.060606 418 418 100 100 500 1 5 11.7109346 11.7109346 2064 Yes No Yes No No Yes No No Yes No No Yes No Yes No Yes No No No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Neither agree nor disagree (0) Yes No No No No No No Yes Yes No No No Yes No No No No No No No Very confident (4) No Yes No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No Yes No Yes Yes Yes 5+ 5+ Yes No No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 15.476119 15.476119 2088 Yes No No No No Yes Yes No Yes No No No No Yes No Yes No Yes No No No No No No No No No Yes No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes No Yes No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No No Yes Yes No Yes No Yes No No Yes No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No No No No Yes Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Most days (365) 101 to 200 21 to 30 51 to 100 101 to 200 None None None None 101 to 200 100% 100% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% 100% None None 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None None None Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% 1 to 10 1 to 10 1 to 10 Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None 1 to 10 25% to 49% 100% 1 to 10 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very likely (4) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 20 to 30 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything 101 to 200 21 to 30 101 to 200 101 to 200 1 to 10 1% to 24% 1 to 10 1% to 24% 1 to 10 1% to 24% 101 to 200 75% to 99% 101 to 200 75% to 99% None 1 to 10 Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Yes Yes No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No No Yes No Yes Yes No No Yes Yes No No No No No No No No No No No Yes No No Yes No Yes No No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No Yes No No Yes No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Rural England East of England Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 1200 700 0 0 500 0 0 0 0 0 0 1000 500 500 125 1 0 4 4 6 25 1 0 1 0 3 100 0 0 3 4 0 125 1 0 4 4 3 0 1 0 0 0 3 0 1 0 0 0 0 0 0 0 0 0 1 0 125 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 100 100 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 50 100 0 33.3333321 0 100 2200 500 1000 0 700 0 140 30 107 137 4 2.91970801 14.2857141 1 0.729927003 133 127 95.6204376 95.4887238 0 3 3 14.0663652 14.0663652 2091 Yes No No No No Yes No No Yes Yes No Yes No Yes No Yes No Yes No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No Yes Yes No Yes No No No No Yes No No No No No 31 to 40 31 to 40 Have not spent anything 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 501 to 1000 501 to 1000 501 to 1000 None None 51 to 100 1% to 24% 501 to 1000 100% 100% Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 31 to 40 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 1001+ 1001+ 1001+ None None None None 51 to 100 1% to 24% 1001+ 100% 1001+ 100% None None Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) No No Yes Yes No No No Yes Yes No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No Yes No Very confident (4) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes E Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban Scotland Scotland North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 17 3500 0 3500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 5 0 0 0 0 0 0 0 1000 0 0 0 5 0 1000 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 1000 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 3500 0 0 0 0 3500 1005 0 1005 1005 0 0 0 100 9.95024872 1005 1005 100 100 0 0 2 10.0057049 10.0057049 2112 Yes No No No No Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No No Yes No No No No No Several times a day (730) Yes No No Yes No Yes No No No No No Yes Yes No No No Yes Yes No No No No No Yes No No No No No No No No No Yes No No No No Yes No No No No No Yes Yes No No No Yes Yes No No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No No 100+ 51 to 100 Have not spent anything 51 to 100 1 to 10 1 to 10 Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 None None None 1 to 10 1% to 24% 1 to 10 25% to 49% 25% to 49% 1 to 10 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything About once a month (12) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 50% to 74% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 31 to 40 1 to 10 Have not spent anything Have not spent anything 51 to 100 21 to 30 1 to 10 11 to 20 11 to 20 None None None None 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 25% to 49% None 1 to 10 Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes Yes Yes Yes No Yes No No No No No No Yes Yes Yes Yes No Yes Yes No Yes No No Yes Yes No No No No No Yes Yes Yes No Yes Yes No No Yes Yes Yes No No Yes Yes No Yes Yes No No No No No No No No Yes No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No Yes Yes Yes No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Urban England South West South White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 18 11200 0 10000 1000 200 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 800 0 800 0 1000 1000 0 16 0 0 1 6 1 4 0 0 0 2 0 10 0 0 0 4 0 14 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 2 0 0 1 0 1 0 0 21.4285717 28.5714283 28.5714283 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66.6666641 66.6666641 0 0 0 0 0 14000 3800 200 0 0 10000 24 6 14 20 0 0 0 3 15 20 8 40 40 0 4 2 16.0742931 16.0742931 2115 Yes No Yes No No Yes No No Yes No No No No Yes No No No No No Yes Yes No No No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes Yes No No No Yes Yes No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No Yes No No Yes No Yes No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) 21 to 30 11 to 20 1 to 10 21 to 30 None None 21 to 30 100% None None None Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) Don't know 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 31 to 40 21 to 30 11 to 20 31 to 40 None None None None 21 to 30 75% to 99% 1 to 10 1% to 24% 1 to 10 1% to 24% None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No Yes No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone England North West North White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Kids 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 2 0 20 0 0 0 1 0 10 0 0 0 1 0 30 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 32 21 11 32 0 0 0 30 93.75 32 2 6.25 6.25 0 0 0 3.06790113 3.06790113 132 Yes No Yes No No Yes Yes No Yes No No No No Yes No No No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 51 to 100 51 to 100 51 to 100 None None None None None None None Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 101 to 200 51 to 100 1 to 10 101 to 200 None None None None None None 1 to 10 1% to 24% 1 to 10 1% to 24% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly disagree (-2) Slightly disagree (-2) Yes Yes No Yes Yes No Yes No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No Yes No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 18 0 0 0 0 0 0 2000 2000 0 0 0 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 100 1 0 2 2 0 100 0 0 0 0 0 0 0 0 2 2 0 100 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 2500 2000 0 0 500 0 105 100 4 104 0 0 0 0 0 104 2 1.92307687 1.92307687 0 1 3 15.476119 15.476119 2119 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No Yes No Yes No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 101 to 200 51 to 100 11 to 20 101 to 200 None None None None 11 to 20 1% to 24% 1% to 24% Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) 41 to 50 41 to 50 41 to 50 None None None None None None None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 41 to 50 11 to 20 Have not spent anything 11 to 20 11 to 20 Have not spent anything 101 to 200 51 to 100 51 to 100 101 to 200 1 to 10 1% to 24% None None None None 11 to 20 1% to 24% 11 to 20 1% to 24% None 1 to 10 Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes No No No Yes No No Yes No No No No No Yes Yes Yes Yes Yes Yes Yes No Yes No No Yes Yes No No No No No Yes Yes Yes No Yes No No No No No Yes No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No Yes Yes No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes No Yes 4 4 Yes Yes No Phone Urban England South West South White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 16 0 0 0 0 0 0 0 0 0 0 0 0 2399 1100 0 0 0 1299 0 0 0 0 0 2000 2000 0 120 0 0 2 50 2 100 0 0 0 0 0 20 0 0 2 50 0 120 0 0 2 50 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 16.666666 16.666666 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 4399 2000 0 1299 1100 0 174 100 72 172 2 1.16279066 0 0 0 170 20 12.7906981 11.7647057 0 2 4 16.0742931 16.0742931 2125 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No Yes No No No No No No No No Several times a day (730) Yes No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No 51 to 100 41 to 50 41 to 50 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Don't know 21 to 30 1 to 10 1 to 10 1 to 10 1% to 24% 25% to 49% 1 to 10 75% to 99% 1 to 10 100% 100% 11 to 20 Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 41 to 50 Have not spent anything Have not spent anything 11 to 20 41 to 50 31 to 40 1 to 10 1 to 10 1 to 10 1% to 24% 1 to 10 25% to 49% 1 to 10 75% to 99% 1 to 10 100% 1 to 10 100% None 21 to 30 Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Urban England North West North White British White Yes No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes Yes No No No Yes CAWI Adults 19 6000 5000 0 1000 0 0 0 0 0 0 0 0 3000 2000 0 1000 0 0 0 2000 1000 1000 0 1400 1400 0 30 0 0 2 2 2 10 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 2 0 0 0 0 0 10 0 0 0 0 0 8 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 2 2 2 20 45.4545441 80 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11400 4400 0 0 2000 5000 36 10 0 10 2 20 35.7142868 8 80 8 8 100 100 0 26 4 14.9710493 14.9710493 2127 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No Once a day (365) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes Yes No Yes No No Yes Yes Yes No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England South West South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Kids 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.70298147 2.70298147 133 Yes No Yes No No No No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 21 to 30 21 to 30 21 to 30 21 to 30 100% None None None 100% Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 Have not spent anything Have not spent anything Have not spent anything 20 to 30 Have not spent anything 21 to 30 21 to 30 21 to 30 21 to 30 100% None None None None None 100% None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone England South East South White British White Yes Yes Yes Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No No Yes No Yes No No No Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 2500 1000 0 0 0 0 1500 0 0 0 0 0 0 0 23 0 0 0 0 0 23 0 0 0 0 0 0 0 0 0 0 0 23 0 0 0 0 0 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2500 0 0 0 2500 0 23 23 0 23 23 100 0 0 0 0 0 100 0 0 0 3 15.476119 15.476119 2150 Yes No No Yes No Yes No No Yes No No Yes Yes Yes No No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No Several times a day (730) Yes Yes Yes No No No Yes No No No No Yes Yes Yes No No No Yes No No No No Yes Yes No No No No Yes No No No No Yes Yes Yes No No No Yes No No No No Yes Yes Yes No No No Yes No No No No Yes Yes No No No No Yes No No No No Yes No Yes Yes No Yes No No Yes No Yes Yes No Yes Yes No No No Yes No No Yes No No 3 Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything About once a week (52) 2-3 times a week (130) 2-3 times a week (130) 201 to 500 41 to 50 51 to 100 101 to 200 None None 50% to 74% 101 to 200 100% None None None 501 to 1000 101 to 200 101 to 200 101 to 200 Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) 100+ 100+ Have not spent anything Every 2-3 weeks (30) About once a week (52) 21 to 30 1 to 10 1 to 10 11 to 20 None None 50% to 74% None None None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ 100+ 1 to 10 Have not spent anything 20 to 30 Have not spent anything 201 to 500 51 to 100 101 to 200 101 to 200 None None 51 to 100 50% to 74% 101 to 200 75% to 99% None None None None 101 to 200 101 to 200 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes Yes No Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No Yes Yes No No No No No Yes No Yes No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England South West South White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Kids 12 2500 0 0 1500 1000 0 20000 20000 0 0 0 0 3000 3000 0 0 0 0 0 0 0 0 0 0 0 0 270 26 0 0 0 0 50 10 0 0 0 0 100 10 0 0 0 0 150 20 0 0 0 0 0 0 0 0 0 0 60 3 0 0 0 0 150 0 0 0 0 0 0 0 0 0 0 0 0 600 200 200 0 0 0 0 0 120 6 0 0 0 0 0 50 100 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25500 21500 1000 0 3000 0 296 60 110 170 0 0 50 150 88.2352905 170 0 0 0 200 126 0 2.60827494 2.60827494 134 Yes Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone Rural England East of England Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 9.84904194 9.84904194 2165 Yes No Yes No No Yes No No Yes No No Yes No Yes No Yes No No No Yes Yes No No No No No No No No Yes No No No No Yes Yes No No No No No No Several times a day (730) Yes No Yes Yes No No No Yes No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No No Yes No No No No No No No Yes Yes No No No Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 2-3 times a week (130) 51 to 100 51 to 100 51 to 100 None None 1 to 10 1% to 24% 51 to 100 100% 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 1 to 10 Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 Have not spent anything 101 to 200 1 to 10 101 to 200 101 to 200 1 to 10 1% to 24% None None 1 to 10 1% to 24% 101 to 200 100% 101 to 200 100% None None Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Yes No Yes No No No No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No Yes Yes Yes No Yes No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban England Yorkshire and The Humber North White & Asian Minority Ethnic Yes Yes No No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes Yes No No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 19 600 0 0 0 0 600 0 0 0 0 0 0 900 600 300 0 0 0 0 0 0 0 0 700 0 700 100 0 0 0 30 5 0 0 0 0 0 5 100 0 0 0 30 0 100 0 0 0 30 5 0 0 0 0 0 5 0 0 0 0 0 0 10 0 0 0 0 0 0 100 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 1500 0 700 200 600 0 135 5 130 135 5 3.70370364 0 10 7.40740728 130 130 100 100 0 0 4 14.413929 14.413929 2173 Yes No No No No Yes No No Yes Yes No Yes No Yes No No No Yes No No Yes No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 21 to 30 21 to 30 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 11 to 20 11 to 20 Have not spent anything 21 to 30 None 21 to 30 51 to 100 31 to 40 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 31 to 40 None None Slightly agree (2) Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) No No No No Yes No No Yes Yes No No No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No No No Yes No Yes 4 4 Yes Yes No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 3400 3000 0 400 0 0 0 1500 0 1500 0 2000 2000 0 0 0 0 4 0 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6900 3900 0 0 3000 0 31 0 0 0 0 0 0 0 0 0 0 0 0 0 31 4 16.0742931 16.0742931 2180 Yes Yes Yes Yes No Yes No No No Yes No Yes No Yes No Yes No No No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes Yes No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No Yes No Female 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England South East South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 400 400 0 0 0 0 0 10 1 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 400 400 0 0 0 0 11 0 10 10 0 0 0 0 0 10 10 100 100 0 1 3 10.8361282 10.8361282 2192 Yes No No No No Yes No No Yes Yes No Yes No Yes No No No No No Yes Yes No Yes No No No No No No Yes No No Yes No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No Yes No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes No No Yes No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 100+ None None None Slightly agree (2) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly disagree (-4) Don't know Don't know Yes No No No No No No No No No No No No No No No No No No No Slightly confident (3) No Yes No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Working Part time None No Yes No No No No No 5+ 5+ Yes Yes No Phone Urban Scotland Scotland North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 17 21000 21000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21000 0 0 0 0 21000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 10.0057049 10.0057049 2200 Yes No No Yes No Yes No No Yes Yes No No No Yes No No No No No No No Yes No No No No No No No No Yes No No No No Yes No No No No No No Once a day (365) Yes No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes No No Yes No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes CAWI Adults 19 500 0 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 3 0 0 0 0 5 3 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1500 1000 500 0 0 0 8 3 0 3 0 0 0 0 0 3 3 100 100 0 5 3 10.0924006 10.0924006 2223 Yes No Yes Yes No Yes Yes No Yes Yes Yes Yes No Yes No No No Yes No No No No No No No No No No No Yes No No Yes Yes No Yes Yes No No No No No Several times a day (730) Yes Yes Yes Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes Yes Yes Yes No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No Yes No No No No Yes No Yes Yes No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 11 to 20 About once a month (12) 2-3 times a week (130) 201 to 500 1 to 10 101 to 200 201 to 500 1 to 10 1% to 24% None None None 101 to 200 100% 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 20 to 30 100+ Every 2-3 weeks (30) About once a month (12) 11 to 20 11 to 20 1 to 10 11 to 20 11 to 20 100% None None None 100% 1 to 10 11 to 20 11 to 20 Have not spent anything About once a month (12) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 75% to 99% 1% to 24% None None 1 to 10 100% 100% 1 to 10 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 51 to 100 100+ 1 to 10 11 to 20 Have not spent anything 201 to 500 21 to 30 201 to 500 201 to 500 31 to 40 1% to 24% 1 to 10 1% to 24% None None 201 to 500 100% 201 to 500 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No Yes No No No No Yes No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes No No Phone Rural England West Midlands Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No Yes No No Yes No Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 17 1500 0 0 0 0 1500 15000 3000 12000 2000 2000 0 2000 2000 0 0 0 0 0 0 0 0 0 1500 1500 0 210 19 8 1 20 2 10 13 2 0 0 0 200 2 5 1 20 0 210 15 7 1 20 0 10 15 6 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 200 0 1 1 20 0 0 0 0 0 0 0 0 0 0 4 1 0 0 2 4.76190472 0 0 100 100 100 0 0 0 100 85.7142868 14.2857141 0 100 100 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 21000 6500 12000 500 2000 0 260 25 228 253 31 12.252964 2.63157892 0 0 222 222 100 100 0 7 4 14.0663652 14.0663652 2225 Yes No Yes Yes No Yes No No Yes Yes No Yes No Yes No No No Yes No No Yes No No No No No No Yes No Yes No Yes Yes No No Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes Yes Yes Yes No Yes No No No No No Yes Yes Yes No No No Yes No No No No Yes No No Yes No No No No No No No Yes Yes Yes Yes No Yes No No No No No Yes Yes Yes No No No Yes No No No No Yes No No No No No No No Yes No No No No No Yes No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 11 to 20 Less often (6) 2-3 times a week (130) 2-3 times a week (130) 201 to 500 11 to 20 11 to 20 21 to 30 None None None 21 to 30 100% 21 to 30 100% 100% 201 to 500 11 to 20 11 to 20 201 to 500 Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Most days (365) About once a week (52) 21 to 30 21 to 30 21 to 30 None None None None 21 to 30 100% 100% 21 to 30 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 11 to 20 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 51 to 100 41 to 50 Have not spent anything 1 to 10 11 to 20 Have not spent anything 201 to 500 11 to 20 41 to 50 51 to 100 None None None None 21 to 30 25% to 49% 51 to 100 100% 51 to 100 100% 41 to 50 201 to 500 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Don't know Strongly disagree (-4) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes Yes No No Yes Yes No No No No No Yes Yes Yes No No Yes No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No Yes No Yes No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Rural England North East North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes No Yes Yes No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Adults 18 2000 0 0 500 0 1500 0 0 0 0 0 0 1400 1100 0 300 0 0 0 300 0 300 0 3000 3000 0 430 30 4 1 1 3 15 0 2 0 0 0 15 30 2 0 1 0 30 30 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 30 30 4 0 1 0 459 15 15 30 0 0 0 0 400 0 0 1 0 3 0 0 100 100 100 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 5700 4100 0 500 1100 0 469 17 48 65 0 0 0 30 46.1538467 65 65 100 100 45 404 4 10.0924006 10.0924006 2246 Yes No Yes No No Yes No No Yes No No Yes No Yes No No No No No Yes No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) No No Yes No No No No No No No No Yes Yes No No No Yes Yes No No No No Yes No No No No No Yes No No No No No No No No No No No No No Yes No Yes Yes No No No Yes Yes No No No No Yes No No No No No No No No No No No Yes Yes No No Yes No No No Yes No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Most days (365) About once a month (12) 31 to 40 31 to 40 31 to 40 None None 1 to 10 25% to 49% 31 to 40 100% 100% 101 to 200 1 to 10 1 to 10 Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 41 to 50 41 to 50 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% Have not spent anything Have not spent anything Have not spent anything None 51 to 100 41 to 50 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 51 to 100 51 to 100 51 to 100 None None None None 1 to 10 1% to 24% 51 to 100 100% 51 to 100 100% 1 to 10 1 to 10 Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Strongly disagree (-4) No Yes No No No No No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Urban England South East South White British White No Yes Yes No No Yes No Yes Yes No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes Yes No No No Yes CAWI Kids 15 0 0 0 0 0 0 4500 4500 0 0 0 0 2400 2400 0 0 0 0 0 0 0 0 0 0 0 0 35 1 0 0 20 0 0 0 0 0 0 0 35 0 0 0 20 0 35 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 35 0 0 0 20 0 150 5 5 0 0 0 0 0 0 1 0 0 0 0 0 0 28.5714283 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 6900 4500 0 0 2400 0 56 0 55 55 0 0 0 10 18.181818 55 55 100 100 5 1 0 2.60827494 2.60827494 135 Yes Yes Yes No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes Yes Yes Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 20 to 30 11 to 20 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly disagree (-4) Slightly disagree (-2) Neither agree nor disagree (0) No Yes No Yes No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No Yes No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 No Yes No Phone England South East South White British White No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No CAWI Adults 18 0 0 0 0 0 0 3000 3000 0 1500 1500 0 0 0 0 0 0 0 0 3000 2000 1000 0 0 0 0 0 2 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5500 5500 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 4 15.476119 15.476119 2251 Yes Yes No Yes No Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes No Yes No Yes No Yes No No No No No Yes No No No Yes Yes Yes Yes No No No No No Several times a day (730) Yes No Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes Yes No No No No No No No No Yes No Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes No No No No No No No No No Yes No No No No No No No Yes Yes No No Yes Yes No No Yes No No No No No No No 41 to 50 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 3 3 2-3 times a week (130) About once a week (52) 21 to 30 1 to 10 1 to 10 11 to 20 None None None 1 to 10 50% to 74% None None None 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) 41 to 50 20 to 30 20 to 30 Most days (365) 2-3 times a week (130) 31 to 40 11 to 20 11 to 20 21 to 30 21 to 30 100% 25% to 49% 1 to 10 25% to 49% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 100+ 51 to 100 41 to 50 41 to 50 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a week (52) Every 2-3 weeks (30) 31 to 40 11 to 20 11 to 20 21 to 30 None None 100% 11 to 20 50% to 74% 1 to 10 25% to 49% 1 to 10 25% to 49% 25% to 49% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) 51 to 100 41 to 50 1 to 10 11 to 20 Most days (365) Most days (365) 21 to 30 11 to 20 1 to 10 21 to 30 1 to 10 25% to 49% 25% to 49% 1 to 10 25% to 49% 11 to 20 100% 100% 1 to 10 100+ 51 to 100 1 to 10 About once a week (52) 31 to 40 11 to 20 11 to 20 None None 50% to 74% 1 to 10 50% to 74% 11 to 20 100% 100% 11 to 20 Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) 100+ 100+ 51 to 100 1 to 10 51 to 100 Have not spent anything 101 to 200 51 to 100 51 to 100 101 to 200 31 to 40 25% to 49% 31 to 40 25% to 49% 51 to 100 25% to 49% 41 to 50 50% to 74% 41 to 50 50% to 74% None 41 to 50 Slightly agree (2) Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Yes Yes Yes No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No Yes No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England London South White Irish White Yes Yes Yes No No Yes No Yes No No Yes Yes No Yes Yes Yes Yes No No Yes No Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Kids 13 5000 0 0 1000 1000 3000 5000 2500 2500 0 0 0 12000 5000 5000 2000 0 0 0 7500 5000 1000 1500 11000 10000 1000 30 35 6 40 30 35 10 15 3 15 20 0 10 15 3 15 5 15 20 30 6 30 25 15 0 30 0 0 10 0 0 15 0 10 5 10 10 10 0 20 10 10 10 0 0 6 10 15 15 0 0 0 0 0 0 0 0 10 5 0 10 5 20 0 0 50 0 0 100 42.8571434 33.3333321 0 100 0 0 0 100 100 0 100 66.6666641 33.3333321 33.3333321 33.3333321 40 33.3333321 40 100 100 0 50 66.6666641 100 100 30000 16500 6000 1000 6500 0 176 63 63 126 40 31.7460308 44.4444427 60 47.6190491 86 46 68.2539673 53.4883728 0 50 0 2.70298147 2.70298147 136 Yes No No No No Yes No No Yes Yes Yes Yes No Yes No No No No No Yes Yes No No No No No No No No Yes No No Yes No Yes Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes Yes No Yes Yes No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 31 to 40 1 to 10 1 to 10 11 to 20 None None None None None 11 to 20 100% 100% 11 to 20 Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 1 to 10 100% 100% Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 1 to 10 11 to 20 21 to 30 None None None None None None 21 to 30 100% 21 to 30 100% None 21 to 30 Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) No Yes Yes Yes No No Yes No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No Yes No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 19 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 1000 0 3000 3000 0 40 1 0 1 1 10 10 0 0 0 0 0 10 1 0 1 1 0 20 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 20 1 0 1 1 0 0 0 0 0 0 0 0 0 20 0 0 0 0 10 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 100 0 0 0 0 0 5000 5000 0 0 0 0 53 10 13 23 0 0 0 0 0 23 23 100 100 0 30 4 10.8361282 10.8361282 2287 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No Yes No No No No No No No Yes No No No No No 51 to 100 3 3 1 to 10 1 to 10 Have not spent anything 11 to 20 11 to 20 About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None 1 to 10 75% to 99% 1 to 10 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Don't know None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 11 to 20 Have not spent anything 1 to 10 Have not spent anything 20 to 30 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% None None 1 to 10 75% to 99% 1 to 10 100% 1 to 10 100% 1 to 10 1 to 10 Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) No Yes Yes Yes No No No No No No No No No Yes No Yes Yes No No No No No No No No No No No Yes No No No Yes No No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No Yes No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Working Part time Any Yes No No Yes No Yes No 4 4 Yes No No Phone Urban England North East North White British White Yes No No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No Yes No Yes Yes Yes No No No Yes CAWI Adults 16 5150 2150 700 800 0 1500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 998 998 0 6 0 0 0 0 1 5 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 20 0 80 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5148 1798 0 500 0 2850 7 5 0 5 1 20 0 4 80 4 4 100 100 1 2 4 10.0924006 10.0924006 2294 Yes No Yes No No Yes No No Yes Yes Yes Yes No Yes No No No Yes No No Yes No No No No No No Yes No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes Yes No Yes No No Yes No No No No No Yes Yes No Yes Yes Yes No No No No Yes No No No No No Yes No No No No Yes No No No No No No No No No No No No No No No Yes Yes No No No No No No No No No No Yes No No No No Yes No Yes No No No No No Yes No Yes No No No No No Yes No Yes No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Every 2-3 weeks (30) 11 to 20 11 to 20 11 to 20 11 to 20 100% 100% None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 51 to 100 51 to 100 Have not spent anything 1 to 10 None 1 to 10 41 to 50 21 to 30 21 to 30 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 100+ 100+ 11 to 20 Have not spent anything 20 to 30 Have not spent anything 21 to 30 11 to 20 1 to 10 11 to 20 11 to 20 50% to 74% 11 to 20 50% to 74% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly disagree (-4) Slightly agree (2) Slightly agree (2) Strongly disagree (-4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes No No No No No No No No No No No Yes No Yes Yes Yes No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No Very confident (4) Yes No No No No No No No No No No No No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes Yes No Phone Rural England South East South White British White Yes No Yes Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Kids 14 1500 0 0 0 1500 0 0 0 0 8000 8000 0 4500 2500 0 2000 0 0 0 0 0 0 0 2000 2000 0 12 0 1 2 7 2 12 0 0 0 0 0 0 0 0 0 7 0 12 0 0 0 7 0 12 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 1 2 0 2 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 16000 12000 1500 0 2500 0 24 12 7 19 12 63.1578941 70.5882339 0 0 7 7 100 100 0 5 0 2.60827494 2.60827494 137 Yes No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Once a day (365) Yes No No No No No No No No No No Yes Yes Yes No Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Yes No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Don't know 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Very likely (4) Very likely (4) Likely (3) Likely (3) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 1 to 10 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% None 1 to 10 Slightly disagree (-2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) No Yes No Yes No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No Yes No No No No No No Yes No No No No No No No Yes Yes No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Working Part time None No Yes No No No No No 3 3 No Yes No Phone Rural England East Midlands Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No Yes No No Yes No Yes No No No Yes CAWI Adults 18 0 0 0 0 0 0 500 500 0 500 500 0 2000 2000 0 0 0 0 0 0 0 0 0 0 0 0 5 1 1 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 1000 0 0 2000 0 7 0 5 5 5 100 0 0 0 0 0 100 0 0 2 3 9.84904194 9.84904194 2320 Yes Yes Yes No No Yes Yes No Yes Yes Yes Yes No Yes Yes No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes Yes Yes No No No No No Several times a day (730) Yes Yes No Yes Yes Yes No Yes No No No Yes Yes No Yes Yes Yes Yes Yes No No No No No No No No No No No No Yes No Yes No No No No No No Yes No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No No Yes No Yes Yes No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Less often (6) Less often (6) 11 to 20 1 to 10 1 to 10 11 to 20 11 to 20 100% None None None 100% Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 100+ 100+ Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 100% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 100+ 100+ 1 to 10 Have not spent anything Have not spent anything Have not spent anything 21 to 30 11 to 20 1 to 10 11 to 20 11 to 20 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes Yes No No No Yes No No No No No No No Yes No No Yes Yes No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No Yes Yes No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes No No Phone Urban England East of England Midlands White British White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 19 999 0 0 0 999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 15000 0 15 0 0 0 3 6 10 0 0 0 0 1 5 0 0 0 3 0 15 0 0 0 3 1 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 5 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 15999 15000 999 0 0 0 24 11 8 19 15 78.9473648 0 0 0 4 4 100 100 0 5 3 14.6100512 14.6100512 2324 Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes No No No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No Yes 100+ 51 to 100 51 to 100 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Most days (365) 51 to 100 1 to 10 41 to 50 51 to 100 1 to 10 1% to 24% 100% 41 to 50 75% to 99% 41 to 50 75% to 99% 75% to 99% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None None None 100% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 1 to 10 Have not spent anything 1 to 10 1 to 10 51 to 100 51 to 100 1 to 10 51 to 100 51 to 100 11 to 20 1% to 24% 1 to 10 1% to 24% 41 to 50 75% to 99% 41 to 50 75% to 99% 41 to 50 75% to 99% None 1 to 10 Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Working Part time Any Yes No No No Yes Yes No 5+ 5+ No No Yes Phone England East of England Midlands White British White Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes No No Yes No Yes No No No Yes No Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 17 10099 10000 0 99 0 0 0 0 0 0 0 0 1300 800 0 0 0 500 0 0 0 0 0 0 0 0 52 0 0 2 10 0 1 0 0 0 0 0 50 0 0 2 10 0 51 0 0 2 10 0 1 0 0 2 10 0 2 0 0 0 0 0 50 0 0 0 0 0 0 49 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1.96078432 100 98.0392151 98 98.0392151 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 100 100 0 0 0 100 0 0 0 0 0 11399 99 0 500 800 10000 64 1 62 63 13 20.6349201 14.2857141 50 79.3650818 50 49 98.4126968 98 0 1 5 11.4285479 11.4285479 2353 Yes No No No No Yes No No No No No No No Yes No No No Yes No No No No No No No No No No No Yes Yes No Yes No No No No No No No No No Several times a day (730) No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None None Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 None None None None None None None None None None None None Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No No No No No No No No No Not particularly confident (2) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking Any Yes No No Yes Yes Yes Yes 5+ 5+ Yes No No Phone Urban England North East North Pakistani Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No CAWI Adults 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 5 10.0924006 10.0924006 2390 Yes No No No No Yes No No Yes No No No No Yes No Yes No Yes No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No 2-4 days a week (156) Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 About once a month (12) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 50% to 74% None None 1 to 10 100% 100% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything 1 to 10 1 to 10 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 100% 1 to 10 100% None 1 to 10 Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Female 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Rural England North East North White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 15 601 0 0 0 1 600 0 0 0 0 0 0 1800 1000 800 0 0 0 0 8 8 0 0 0 0 0 7 0 0 0 3 0 1 0 0 0 0 0 6 0 0 0 2 0 7 0 0 0 2 0 3 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 1 0 0 4 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 42.8571434 66.6666641 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 50 100 100 0 0 0 0 0 1201 0 1 200 1000 0 10 1 8 9 4 44.4444427 40 1 11.1111107 5 5 100 100 0 1 0 3.06790113 3.06790113 138 Yes No No No No Yes No No Yes No No No No Yes No No No No No No Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) No No No No Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No No No No No Yes No No No No No Yes No No No No No No Yes Yes No No Yes No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 21 to 30 11 to 20 11 to 20 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) About once a week (52) 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 11 to 20 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 20 to 30 Have not spent anything Have not spent anything 11 to 20 Have not spent anything 21 to 30 1 to 10 1 to 10 11 to 20 None None None None None None 1 to 10 25% to 49% 1 to 10 25% to 49% None 11 to 20 Strongly disagree (-4) Neither agree nor disagree (0) Strongly disagree (-4) Slightly disagree (-2) Neither agree nor disagree (0) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) No No No Yes No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No Yes No No No No No Not particularly confident (2) No No Yes No No No No No No No No No Yes No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone Urban England London South Chinese Minority Ethnic No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 19 0 0 0 0 0 0 0 0 0 1000 1000 0 2800 1300 0 1500 0 0 0 0 0 0 0 0 0 0 5 0 1 18 0 0 0 0 0 1 0 0 5 0 0 5 0 0 5 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 12 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3800 2500 0 0 1300 0 24 1 10 11 0 0 0 0 0 11 5 45.4545441 45.4545441 0 13 3 15.476119 15.476119 2392 Yes No No No No No No No Yes Yes Yes No No Yes No Yes No No No No Yes No No No No No No Yes No No No Yes Yes No No Yes No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 Have not spent anything 1 to 10 Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 20 to 30 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 None None Slightly disagree (-2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Strongly agree (4) Slightly disagree (-2) No Yes No No Yes No No No Yes No No No No No No No No No No No Not particularly confident (2) Yes No No No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes No Yes 5+ 5+ Yes Yes No Phone Urban England London South White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 870 870 0 0 0 0 0 1000 0 1000 0 1500 1500 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3370 2500 0 0 870 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5 15.476119 15.476119 2409 Yes No Yes No Yes Yes Yes No Yes Yes No Yes No Yes No Yes No Yes No Yes Yes No No No No No No No No Yes No No Yes Yes No Yes No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes Yes No Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes Yes No Yes Yes No 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a month (12) Most days (365) 101 to 200 11 to 20 51 to 100 101 to 200 None None None None 51 to 100 75% to 99% 75% to 99% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None 1 to 10 25% to 49% 1 to 10 1% to 24% 1 to 10 25% to 49% 25% to 49% Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 51 to 100 51 to 100 51 to 100 None None 1 to 10 1% to 24% 51 to 100 75% to 99% 75% to 99% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 31 to 40 11 to 20 1 to 10 Have not spent anything 11 to 20 Have not spent anything 201 to 500 11 to 20 201 to 500 201 to 500 None None None None 11 to 20 1% to 24% 101 to 200 75% to 99% 101 to 200 75% to 99% None 1 to 10 Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly agree (2) Slightly disagree (-2) Neither agree nor disagree (0) Yes Yes Yes Yes No No Yes Yes No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No Yes Yes No No No No No Yes Yes Yes Yes No Yes No Yes No Yes Yes No No No No Yes No No No No No No No No No No Yes No Yes No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No Yes No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes No Yes 4 4 Yes Yes No Phone Urban England West Midlands Midlands White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 18 200 0 0 0 200 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 1500 1500 0 120 0 0 20 100 3 20 0 0 0 0 0 100 0 0 20 100 0 120 0 0 20 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 10 0 3 100 0 0 8 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 83.3333359 83.3333359 0 0 0 0 0 0 0 0 0 0 0 0 25 15 40 40 0 0 10 75 75 0 0 0 0 0 3200 1500 200 0 1500 0 243 20 220 240 0 0 0 15 6.25 240 183 76.25 76.25 0 3 4 14.6100512 14.6100512 2420 Yes No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No Yes No No No No No No No No No No No No Once a day (365) No No No No No No No Yes No No No No No No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No Yes No No No No No No No No No Yes No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything None 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 None None Slightly disagree (-2) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Yes Yes No No No Yes No Yes Yes No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England North East North White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No Yes Yes No No No No No No No No No No No CAWI Kids 15 1000 0 1000 0 0 0 4000 4000 0 0 0 0 1500 0 0 1500 0 0 0 1500 0 1500 0 1500 1500 0 0 1 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9500 8500 0 0 0 1000 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 2.9604094 2.9604094 139 Yes No Yes No No Yes No No Yes No No No No Yes No No No No No No Yes No No No Yes No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No Yes No No No No Yes No No No No No No No Yes No No No No No Yes No Yes No No No No No No No 100+ 100+ 100+ Have not spent anything 1 to 10 1 to 10 3 3 About once a month (12) 2-3 times a week (130) 501 to 1000 11 to 20 501 to 1000 501 to 1000 501 to 1000 100% None None None 100% 1 to 10 Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 20 to 30 1 to 10 1 to 10 Have not spent anything 100+ 501 to 1000 11 to 20 501 to 1000 501 to 1000 501 to 1000 75% to 99% None None None None 1 to 10 100% 1 to 10 100% None 11 to 20 Slightly agree (2) Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Slightly disagree (-2) Yes Yes Yes Yes No No No No No No No No No No No No No Yes Yes No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No No No No Very confident (4) No Yes Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 4 4 Yes Yes No Phone Urban England Yorkshire and The Humber North White Irish White Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 17 19199 15000 0 1000 1000 2397 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 1000 0 675 1 0 0 3 2 15 0 0 0 0 0 650 0 0 0 3 0 665 0 0 0 3 0 665 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 10 1 0 0 0 2 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 19799 3000 1000 799 0 15000 681 15 653 668 665 99.5508957 0 0 0 3 3 100 100 0 13 4 14.413929 14.413929 2424 Yes No Yes No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No Yes Yes No No Yes No No No No Yes Yes Yes Yes Yes No Yes No No No No Yes Yes No No No No Yes No No No No No No Yes No No No No No No No No No Yes Yes No Yes No Yes No No No No No No No No No No Yes No No No No No No No Yes No No No No Yes No Yes Yes No No No No No No Yes Yes No No No No 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything About once a month (12) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% 50% to 74% 1 to 10 50% to 74% 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 1% to 24% 1 to 10 100% 100% Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 20 to 30 Have not spent anything Have not spent anything 1 to 10 1 to 10 11 to 20 1 to 10 11 to 20 11 to 20 1 to 10 1% to 24% 1 to 10 50% to 74% 1 to 10 1% to 24% 11 to 20 100% 11 to 20 100% None 1 to 10 Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Yes Yes Yes Yes Yes Yes No Yes No No No No No No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No No Yes Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No Yes No No Phone Urban England Yorkshire and The Humber North White British White Yes Yes Yes No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No Yes No Yes Yes Yes No No No Yes CAWI Kids 14 400 0 400 0 0 0 3000 3000 0 0 0 0 1000 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 9 0 0 0 2 0 0 0 0 0 2 0 9 0 0 0 4 0 9 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 1 0 2 0 9 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 50 50 50 100 100 0 0 0 0 0 0 0 0 11.1111107 100 100 0 0 0 0 0 0 0 0 0 0 4400 3000 0 0 1000 400 15 2 11 13 2 15.3846149 50 2 15.3846149 11 11 100 100 0 2 0 2.9604094 2.9604094 140 Yes No No No No Yes No No Yes Yes Yes Yes No Yes No Yes No Yes No No Yes No No No No No No Yes No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes Yes No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No Yes Yes No Yes Yes No No No Yes Yes No Yes Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 51 to 100 11 to 20 51 to 100 51 to 100 None None 51 to 100 100% 51 to 100 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% None None None 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) 1 to 10 Have not spent anything 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 51 to 100 11 to 20 51 to 100 51 to 100 None None None None 51 to 100 75% to 99% 51 to 100 75% to 99% 51 to 100 75% to 99% None 1 to 10 Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Yes Yes Yes Yes No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No Yes Yes Yes Yes No Yes No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No Slightly confident (3) Yes No No No No No No No No No No No No No Yes No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes Yes No Phone Urban England East of England Midlands White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 16 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 2000 0 0 0 1000 0 1000 0 0 0 0 72 0 0 8 1 0 20 0 0 0 0 0 52 0 0 2 1 0 72 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 72 0 0 0 0 0 2 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 81 20 55 75 0 0 0 72 96 75 72 96 96 0 6 3 9.84904194 9.84904194 2442 Yes Yes No No No Yes No No No No Yes Yes No Yes No No No No Yes No Yes No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 20 to 30 20 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 None None Neither agree nor disagree (0) Slightly disagree (-2) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly disagree (-2) Yes No No No No No No No No No No No No No No No No No No No Not particularly confident (2) No No Yes No No No No No No No No No No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Working Part time Any Yes No Yes No No Yes No 5+ 5+ No Yes No Phone Rural England East Midlands Midlands White British White No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 19 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 2000 0 0 0 0 0 0 0 1000 1000 0 0 0 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 3000 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 5 9.84904194 9.84904194 2453 Yes No No No No Yes No No Yes Yes Yes Yes No Yes No No No No Yes No No No No No No No No Yes No Yes No No No No Yes No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes Yes No No Yes No 100+ 51 to 100 51 to 100 Have not spent anything 11 to 20 1 to 10 Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 41 to 50 11 to 20 11 to 20 31 to 40 11 to 20 25% to 49% 75% to 99% 11 to 20 50% to 74% 11 to 20 100% 100% 1 to 10 Very likely (4) Very likely (4) Very likely (4) Very likely (4) Unlikely (2) Very likely (4) Very likely (4) Very likely (4) Likely (3) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 1 to 10 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 50% to 74% None 1 to 10 25% to 49% None None 1 to 10 100% 100% 1 to 10 Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Very likely (4) Very likely (4) Likely (3) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 100+ 41 to 50 1 to 10 Have not spent anything 1 to 10 51 to 100 51 to 100 11 to 20 31 to 40 41 to 50 11 to 20 25% to 49% 11 to 20 50% to 74% 21 to 30 25% to 49% 21 to 30 100% 21 to 30 100% None 11 to 20 Neither agree nor disagree (0) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Strongly agree (4) Slightly agree (2) Yes Yes No Yes Yes No No Yes No No No No No Yes No Yes Yes Yes Yes Yes No Yes Yes Yes No No No No Yes No No No Yes Yes Yes Yes No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No Yes No No Yes C2 Not married Not working Not working not looking Any Yes No Yes No Yes Yes Yes 5+ 5+ Yes Yes No Phone Urban England East Midlands Midlands White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes No Yes Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 16 10599 8500 0 2000 99 0 0 0 0 0 0 0 4000 1000 1000 2000 0 0 0 0 0 0 0 500 500 0 43 0 0 7 8 1 13 0 0 0 0 0 20 0 0 3 8 0 33 0 0 3 8 0 13 0 0 2 0 0 20 0 0 0 0 0 20 0 0 1 0 0 0 20 0 0 1 8 0 0 0 0 0 0 0 0 0 10 0 0 4 0 1 39.39394 86.9565201 60.60606 100 100 0 0 0 0 0 0 0 0 0 0 66.6666641 0 33.3333321 0 100 100 0 0 0 100 100 0 0 0 0 0 14099 4500 99 0 1000 8500 59 13 31 44 15 34.0909081 66.6666641 21 47.727272 29 29 100 100 0 15 5 9.84904194 9.84904194 2465 Yes No No No No Yes No No No Yes No Yes No Yes No No No Yes Yes No No No No No No No No No No Yes No No No No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No Yes Yes Yes No No No No No No No No No No No Yes No No No No Yes No No No No No No No No No No Yes Yes No Yes Yes Yes No No No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes Yes No No Yes No 1 to 10 1 to 10 Have not spent anything 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 100% 100% 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None 1 to 10 100% 1 to 10 100% 100% 1 to 10 Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 11 to 20 1 to 10 11 to 20 11 to 20 None None 1 to 10 50% to 74% None None 11 to 20 75% to 99% 11 to 20 75% to 99% None 1 to 10 Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Strongly disagree (-4) No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes Yes No Yes No No No No No No No Very confident (4) No No No No No No No No No No No Yes No No No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 1 1 Yes Yes No Phone Urban England North East North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 19 1000 0 800 200 0 0 0 0 0 0 0 0 1000 0 0 1000 0 0 0 0 0 0 0 0 0 0 5 0 1 3 7 0 1 0 0 0 0 0 2 0 1 1 7 0 3 0 1 1 7 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 1 3 0 0 1 7 0 0 0 0 0 0 0 0 0 2 0 0 2 0 0 0 100 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 100 0 0 0 100 100 0 0 0 0 0 2000 1200 0 0 0 800 16 1 11 12 0 0 50 0 0 12 11 91.6666641 91.6666641 0 4 1 10.0924006 10.0924006 2476 Yes Yes Yes Yes No Yes No No Yes No No Yes No Yes Yes No No No No Yes No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes No No No No Yes No No No No Yes No No No No No No No No No No No Yes No No Yes Yes Yes No No No No Yes Yes No No No No Yes No No No No No Yes No Yes No No No No No Yes No Yes No No No No No Yes No Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 51 to 100 1 to 10 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 31 to 40 31 to 40 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 31 to 40 11 to 20 1 to 10 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None None None None 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 51 to 100 51 to 100 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 75% to 99% 1 to 10 75% to 99% 1 to 10 1 to 10 Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Slightly disagree (-2) Slightly agree (2) Slightly disagree (-2) Yes Yes Yes Yes No No No Yes No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No No Yes No No No Yes No No No No Yes Yes Yes Yes No No No Yes No No No No No Yes No Yes Yes No No No No No No No No No Yes Yes Yes No Yes Yes Yes No No Yes Yes Yes Yes Yes Yes Yes No No No No Not particularly confident (2) No No No No No No No No No No No No No Yes No No No No No No No Female 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 2 2 Yes No No Phone England Yorkshire and The Humber North White British White Yes Yes Yes No No Yes No Yes Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No Yes No Yes Yes CAWI Adults 16 0 0 0 0 0 0 4000 4000 0 0 0 0 3500 1000 500 2000 0 0 0 0 0 0 0 2000 2000 0 5 2 0 5 2 5 5 0 0 0 0 0 0 0 0 2 2 0 5 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 2 0 100 5 5 0 0 0 0 0 0 2 0 3 0 5 0 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 9000 8000 0 0 1000 0 19 5 4 9 0 0 0 0 0 9 7 77.7777786 77.7777786 5 10 2 10.0924006 10.0924006 2482 Yes No No No No Yes No No Yes Yes No Yes No Yes No No No No No No Yes No No No No No No No No No No Yes Yes No No Yes Yes No No No No No Once a day (365) Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 1 to 10 1 to 10 About once a month (12) About once a week (52) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 25% to 49% None None None 1 to 10 100% 100% Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 11 to 20 11 to 20 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 21 to 30 11 to 20 1 to 10 11 to 20 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 11 to 20 11 to 20 1 to 10 Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 None None 100% None None 1 to 10 100% 100% 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 41 to 50 20 to 30 1 to 10 1 to 10 1 to 10 Have not spent anything 11 to 20 1 to 10 1 to 10 1 to 10 1 to 10 1% to 24% 1 to 10 1% to 24% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly disagree (-4) Yes Yes Yes No Yes Yes No Yes No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No Very confident (4) No No No No No No No No No No No Yes No No No No No No No No No Male 12 to 15 12 to 15 12 to 15 No No No No No No Not working In Education Any Yes No No No Yes No No No Yes No Phone Urban England South East South White British White Yes Yes No No Yes No Yes Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Kids 14 1400 0 0 0 500 900 1500 1500 0 0 0 0 2550 900 1050 600 0 0 0 1650 1050 600 0 0 0 0 4 1 0 3 6 0 1 0 0 0 0 0 3 0 0 0 5 0 4 0 0 0 5 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 0 0 0 5 0 0 0 0 0 0 0 0 0 0 1 0 3 1 0 25 0 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 100 100 0 0 0 0 0 4400 2700 500 300 900 0 14 1 8 9 1 11.1111107 16.666666 0 0 8 8 100 100 0 5 0 2.60827494 2.60827494 141 Yes No No No No Yes No No Yes Yes Yes Yes No Yes No No No No No No No Yes No No Yes No No No No Yes No No Yes No No No No No No No No No Several times a day (730) Yes No No No No No No No No No No Yes No No No Yes No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 3 3 3 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) Less often (6) 21 to 30 11 to 20 1 to 10 21 to 30 None None None None None None None Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 Have not spent anything 11 to 20 None 11 to 20 51 to 100 20 to 30 Have not spent anything Have not spent anything 11 to 20 20 to 30 31 to 40 11 to 20 1 to 10 21 to 30 None None None None None None None None None None None 11 to 20 Strongly agree (4) Strongly agree (4) Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly disagree (-2) Neither agree nor disagree (0) Strongly agree (4) No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 4 4 Yes No No Phone Urban Scotland Scotland North White British White Yes Yes Yes No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes Yes Yes No No Yes No Yes No No Yes Yes No CAWI Adults 19 2500 2500 0 0 0 0 0 0 0 0 0 0 1500 1500 0 0 0 0 0 0 0 0 0 2500 2500 0 25 0 0 0 0 15 20 0 0 0 0 0 5 0 0 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6500 2500 0 0 1500 2500 40 20 5 25 0 0 0 0 0 25 0 0 0 0 15 4 14.8424444 14.8424444 2531 Yes Yes Yes Yes No Yes Yes No Yes Yes Yes Yes No Yes Yes Yes No No No No No No Yes No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No Yes No No No No No No No Yes No No No No Yes No No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes Yes No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a month (12) About once a month (12) 101 to 200 41 to 50 41 to 50 51 to 100 None None None None None 51 to 100 100% 100% 1 to 10 Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 21 to 30 None 21 to 30 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 21 to 30 1 to 10 1 to 10 1 to 10 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 41 to 50 41 to 50 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 101 to 200 51 to 100 51 to 100 101 to 200 None None None None None None 101 to 200 100% 101 to 200 100% None 41 to 50 Slightly agree (2) Strongly agree (4) Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Yes Yes Yes Yes No No No Yes No No No No No Yes Yes No Yes Yes Yes Yes No No No No Yes No No No No No No Slightly confident (3) No No No No No No No No No No No No No No No No No No No Yes No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Working Part time None No Yes No No No No No 1 1 No Yes No Phone Urban Northern Ireland Northern Ireland North White British White Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 18 5 0 0 5 0 0 1000 1000 0 0 0 0 3000 700 300 2000 0 0 0 600 0 600 0 500 500 0 110 25 5 10 2 5 50 0 5 0 0 0 50 0 0 0 2 0 100 0 5 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 5 0 2 0 0 0 0 0 0 0 0 0 10 25 0 10 0 5 0 0 0 100 100 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 0 0 0 0 100 100 0 0 0 0 0 4805 4105 0 0 700 0 157 55 52 107 0 0 0 0 0 107 107 100 100 0 50 1 11.4333076 11.4333076 2552 Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes No No No No No Yes Yes No No No No No No No No No No Yes Yes Yes No Yes No No No No No No Several times a day (730) Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 100+ 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) Most days (365) 1001+ 41 to 50 501 to 1000 1001+ None None None None 501 to 1000 75% to 99% 75% to 99% Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 11 to 20 1 to 10 1 to 10 11 to 20 None None None None None None None Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 1 to 10 2-3 times a week (130) 2-3 times a week (130) 31 to 40 11 to 20 11 to 20 31 to 40 11 to 20 50% to 74% None 1 to 10 25% to 49% 1 to 10 1% to 24% None None 50% to 74% Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Very likely (4) Likely (3) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) About once a week (52) 31 to 40 1 to 10 21 to 30 31 to 40 21 to 30 75% to 99% None 1 to 10 25% to 49% None None 75% to 99% Have not spent anything Have not spent anything Have not spent anything None 100+ Have not spent anything Have not spent anything Have not spent anything 11 to 20 100+ 1001+ 51 to 100 1001+ 1001+ 41 to 50 1% to 24% None None 11 to 20 1% to 24% 501 to 1000 75% to 99% 501 to 1000 75% to 99% None None Neither agree nor disagree (0) Slightly agree (2) Strongly agree (4) Neither agree nor disagree (0) Strongly disagree (-4) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes Yes Yes Yes Yes Yes No No No No No Yes Yes No No No No No No No No No No No No No Yes Yes Yes Yes No No No No No No No No No No No No No No Yes Yes Yes No No No No No No No No No No No No No No No No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No Slightly confident (3) Yes No No Yes No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes No Yes 4 4 Yes Yes No Phone Urban England South East South White British White Yes Yes No No No Yes No Yes No Yes No Yes Yes Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes Yes Yes No No Yes No Yes Yes No Yes No Yes Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 19 12000 12000 0 0 0 0 0 0 0 0 0 0 1700 1200 0 0 0 0 500 0 0 0 0 0 0 0 1050 20 10 36 40 0 50 10 5 20 10 0 1000 10 5 16 30 0 1050 20 10 36 40 0 0 0 0 20 30 0 0 0 0 0 0 0 0 0 0 10 10 0 6 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 95.2380981 95.2380981 0 0 0 0 0 0 0 0 0 0 55.5555573 0 27.7777786 16.666666 0 55.5555573 75 0 25 0 75 0 0 0 0 0 13700 0 0 0 1700 12000 1156 95 1061 1156 50 4.32525969 0 20 1.73010385 1106 1000 90.830452 90.4159164 0 0 4 15.476119 15.476119 2618 Yes No No No No No No No No No No No No No No No No Yes No No No No No No No No No Yes No No No Yes No No No No No No No No No No Several times a day (730) No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No No No No No Yes No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None None None Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know No No No No No No No No No No Yes No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 16 to 19 C2DE No No No Yes No Yes D Not married Not working Not working not looking None No Yes No No No No No 5+ 5+ Yes No No Phone Urban England London South Bangladeshi Minority Ethnic No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No CAWI Adults 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 12.5739346 12.5739346 2669 Yes No Yes No No No No No Yes Yes No No No Yes No No No Yes No No Yes No No No No No No No No No Yes No Yes No No Yes No No No No No No Several times a day (730) Yes No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No No No No No No No No No No Yes No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 Have not spent anything Have not spent anything Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything 1 to 10 50% to 74% 1 to 10 11 to 20 Have not spent anything 11 to 20 Have not spent anything Most days (365) 51 to 100 51 to 100 51 to 100 None None 51 to 100 75% to 99% 51 to 100 100% 100% 100+ 100+ Have not spent anything 31 to 40 None 31 to 40 100+ 100+ Have not spent anything Have not spent anything Have not spent anything Have not spent anything 101 to 200 51 to 100 51 to 100 None None 1 to 10 1% to 24% 51 to 100 75% to 99% 51 to 100 100% 51 to 100 100% None 41 to 50 Don't know Don't know Don't know Don't know Don't know Don't know Don't know Don't know Yes Yes No No No No No No No No No No No No No No No No No No Yes Yes Yes Yes No Yes No No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Working Part time None No Yes No No No No Yes 5+ 5+ Yes Yes No Phone Urban England East Midlands Midlands White British White Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 17 0 0 0 0 0 0 0 0 0 0 0 0 2000 0 0 2000 0 0 0 2000 0 2000 0 15000 15000 0 0 0 0 4 100 40 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 75 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 4 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 75 100 100 0 0 0 0 0 19000 19000 0 0 0 0 144 0 100 100 0 0 4.5454545 75 75 100 100 100 100 0 44 5 14.6100512 14.6100512 2682 Yes Yes Yes No No Yes No No No No No No No Yes No No No No Yes No Yes No No No No Yes No No No Yes No No Yes No No Yes No No No No No No Several times a day (730) Yes No No No Yes No No No No No No Yes Yes Yes Yes Yes Yes No No No No No No No No No No No No No No Yes No Yes No No No Yes No No No No No No No No No No No Yes No No No No No No No No No No No No No No Yes No Yes No No No No No No No Yes No No No No No No No 100+ 100+ 100+ Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything About once a week (52) 41 to 50 41 to 50 41 to 50 41 to 50 100% 25% to 49% None None 100% Likely (3) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 50% to 74% 1 to 10 100% 100% Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) 1 to 10 Have not spent anything Have not spent anything 1 to 10 About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 100+ 1 to 10 11 to 20 Have not spent anything 20 to 30 100+ 51 to 100 51 to 100 1 to 10 51 to 100 41 to 50 75% to 99% 11 to 20 25% to 49% None None 1 to 10 100% 1 to 10 100% None 1 to 10 Strongly agree (4) Slightly agree (2) Slightly agree (2) Slightly agree (2) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Slightly agree (2) Yes Yes No No No No No Yes No No No No No Yes Yes No Yes No No No No No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No No No No No No Slightly confident (3) No No Yes No No No No No No No No No No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking None No Yes No No No No No 3 3 Yes Yes No Phone England South East South White British White Yes Yes No Yes No No Yes No Yes No No No Yes No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes Yes No No No Yes CAWI Adults 18 16000 15000 0 0 1000 0 1000 1000 0 0 0 0 2000 2000 0 0 0 0 0 1000 0 0 1000 0 0 0 50 1 0 4 1 0 50 0 0 4 0 0 0 0 0 0 1 0 50 0 0 4 1 0 50 0 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 4 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 100 40 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 50 100 100 0 0 0 100 100 0 0 0 0 0 21000 1000 2000 0 3000 15000 56 54 1 55 50 90.9090881 39.2156868 0 0 5 5 100 100 0 1 3 15.476119 15.476119 2693 Yes No Yes No No Yes No No Yes Yes No Yes No Yes No Yes No No No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No No No No No No No No No No Yes Yes No No Yes Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No Yes Yes No Yes Yes No 100+ 51 to 100 31 to 40 11 to 20 Have not spent anything 51 to 100 Have not spent anything Have not spent anything Most days (365) Most days (365) 201 to 500 101 to 200 101 to 200 201 to 500 201 to 500 100% 100% None None 100% Very likely (4) Very likely (4) Very likely (4) Likely (3) Likely (3) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 21 to 30 21 to 30 21 to 30 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 1% to 24% 1 to 10 50% to 74% 50% to 74% Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 21 to 30 21 to 30 Have not spent anything 1 to 10 None 1 to 10 100+ 20 to 30 51 to 100 Have not spent anything 20 to 30 51 to 100 201 to 500 101 to 200 201 to 500 201 to 500 201 to 500 75% to 99% 201 to 500 75% to 99% None None 11 to 20 75% to 99% 11 to 20 75% to 99% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Slightly agree (2) Neither agree nor disagree (0) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Yes Yes Yes Yes Yes No No Yes No No No No No No No Yes Yes Yes Yes Yes No No No No No No No No Yes Yes Yes Yes Yes Yes Yes Yes No No No No No No No No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No No No No No No Yes No Yes No Yes No Yes No No Yes Yes No No Yes Yes Yes No No No No Slightly confident (3) No No No No No No No No No No No No No Yes No No No No No No No Female 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking None No Yes No No No No No 3 3 No Yes No Phone England East Midlands Midlands Indian Minority Ethnic Yes Yes No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No Yes No Yes No Yes No Yes Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 16 16000 4000 2000 0 10000 0 0 0 0 0 0 0 2500 2500 0 0 0 0 0 0 0 0 0 3000 3000 0 353 0 0 5 12 5 153 0 0 0 0 0 200 0 0 5 12 0 353 0 0 5 12 0 353 0 0 0 0 0 353 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 3 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 100 100 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 20 60 60 0 0 0 100 100 0 0 0 0 0 21500 3000 10000 0 2500 6000 375 153 217 370 353 95.4054031 98.6033554 0 0 17 15 99.4594574 88.2352905 0 5 3 14.6100512 14.6100512 2700 Yes No Yes Yes No Yes Yes No Yes Yes No No No Yes No Yes No Yes No No Yes No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No Yes Yes Yes Yes No No No No No Yes No No No Yes Yes Yes No No No No No No No No No No No No No Yes No No No No No Yes Yes No No No No No No No No No No Yes Yes No No No No No No No No No No No No No Yes No Yes No Yes No No No No No Yes No Yes Yes No No No No Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything None 11 to 20 1 to 10 1 to 10 Have not spent anything 11 to 20 Have not spent anything Have not spent anything Have not spent anything About once a month (12) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) About once a month (12) 1 to 10 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 11 to 20 11 to 20 Have not spent anything Have not spent anything 1 to 10 Have not spent anything 1 to 10 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 1 to 10 100% None 1 to 10 Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Strongly disagree (-4) Yes Yes No No Yes No No No No No No No No Yes Yes Yes No No No Yes No No No No No No No No No No No Not at all confident (1) No No No No No No No No No No No No No No No No No No No No Yes Male 16 to 24 16 to 34 16 to 19 ABC1 Yes No No No Yes No AB Not married Not working Not working not looking Any Yes No No No Yes Yes No 3 3 Yes Yes No Phone Scotland Scotland North White British White Yes Yes No No No No No No No No No No No Yes No No No No No No No No No No No No Yes No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes Yes Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes CAWI Adults 18 0 0 0 0 0 0 0 0 0 0 0 0 1700 500 0 1200 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 0 0 0 0 3 1 0 0 0 0 0 1 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 1700 1200 0 0 500 0 6 4 1 5 0 0 0 0 0 5 5 100 100 0 1 3 14.2901106 14.2901106 2719 Yes Yes No Yes No Yes No No Yes Yes Yes Yes Yes Yes Yes No No No No No Yes No No No No No No No No Yes No No Yes No No No Yes No No No No No Several times a day (730) Yes Yes Yes No Yes No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No Yes No No No No Yes No No No No Yes No No No No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No No Yes No No No No Yes No No No No No No Yes No No No No No No No Yes No No Yes No No No No Yes No No No No No 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) Most days (365) 201 to 500 51 to 100 51 to 100 101 to 200 None None None None None None None None 1 to 10 Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None Have not spent anything Have not spent anything Have not spent anything None 41 to 50 31 to 40 21 to 30 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything About once a week (52) 1 to 10 1 to 10 1 to 10 None None None None None None None 1 to 10 100% 100% 1 to 10 Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 None None None None 1 to 10 100% 100% Have not spent anything Have not spent anything Have not spent anything None 41 to 50 11 to 20 Have not spent anything Have not spent anything 20 to 30 Have not spent anything 201 to 500 51 to 100 101 to 200 201 to 500 None None None None None None 11 to 20 1% to 24% 11 to 20 1% to 24% None 1 to 10 Strongly agree (4) Slightly agree (2) Strongly agree (4) Strongly agree (4) Neither agree nor disagree (0) Slightly agree (2) Strongly disagree (-4) Slightly disagree (-2) Yes No Yes No No No No No No No No No No No No Yes No Yes No Yes No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No Yes Yes No No No No No No No No No No No Very confident (4) No No No No No No No No No No No No No No No No No No No No Yes Female 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Working Full time None No Yes No No No No No 2 2 No Yes No Phone Urban England South West South White British White Yes Yes No No No Yes No Yes No No Yes Yes No Yes Yes No No No Yes No Yes No No Yes Yes No No No No No No No No No No No No No No Yes Yes No No No Yes No Yes Yes No No No Yes No Yes No No No Yes No Yes Yes No No No Yes No No No No No No No No No No No No No Yes Yes No No No Yes No Yes No Yes No Yes Yes CAWI Adults 18 500 0 0 500 0 0 0 0 0 0 0 0 4500 3000 500 1000 0 0 0 0 0 0 0 0 0 0 201 1 0 7 6 0 100 0 0 0 0 0 100 1 0 6 6 0 200 1 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 100 0 0 0 100 100 0 0 0 0 0 4500 1500 0 0 3000 0 215 100 113 213 0 0 0 0 0 213 12 5.63380289 5.63380289 0 2 2 16.0742931 16.0742931 2721 Yes No Yes No No Yes No No Yes No No No No Yes No No No Yes No No No No No No No No No No No Yes No No Yes No No Yes Yes No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes Yes No No No Yes Yes Yes No No No Yes Yes No No No No No No No No No Yes No No Yes No No No No No No No Yes Yes No No No Yes Yes Yes No No No No No No No No No No No No Yes No No No Yes No No No No No No No Yes No No Yes No No 51 to 100 Have not spent anything Have not spent anything Have not spent anything Have not spent anything 3 3 3 Every 2-3 weeks (30) 2-3 times a week (130) 101 to 200 21 to 30 51 to 100 101 to 200 21 to 30 25% to 49% 100% None None 51 to 100 100% 100% Very likely (4) Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very likely (4) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything None Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 1 to 10 100% None None None 100% 11 to 20 1 to 10 1 to 10 Have not spent anything 1 to 10 Have not spent anything Have not spent anything Have not spent anything 1 to 10 None 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None 11 to 20 11 to 20 Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None None None 1 to 10 Very likely (4) Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Unlikely (2) 51 to 100 20 to 30 20 to 30 1 to 10 1 to 10 Have not spent anything 101 to 200 31 to 40 51 to 100 101 to 200 31 to 40 25% to 49% 21 to 30 75% to 99% None None 51 to 100 75% to 99% 51 to 100 75% to 99% None 1 to 10 Slightly disagree (-2) Slightly agree (2) Slightly agree (2) Slightly agree (2) Strongly agree (4) Slightly agree (2) Slightly disagree (-2) Strongly disagree (-4) Yes Yes Yes No No Yes Yes Yes No No No No No Yes No Yes No Yes No Yes No No No No No No No No Yes No Yes Yes No No No Yes No No No No Yes No No No No No No No No No No No No No No No No No No No No No No No No No No No Yes No No No No No No No No No No No No No No No No No No No Yes No No No Very confident (4) Yes No No No No No No No No No No Yes No No No No No No No No No Male 16 to 24 16 to 34 16 to 19 ABC1 No Yes No No Yes No C1 Not married Not working Not working not looking Any Yes No No No Yes Yes No 4 4 Yes No No Phone Rural England West Midlands Midlands White British White Yes Yes Yes No Yes No Yes Yes Yes No No No Yes Yes No No No No No No No No No No No No Yes No No Yes No No Yes No Yes No No No Yes No No No No No No No No No No No No No No Yes No No No Yes No Yes No No Yes Yes No No Yes No No No Yes No Yes No No Yes Yes No Yes Yes Yes No Yes No Yes Yes No Yes No Yes Yes CAWI Adults 17 5400 0 0 0 3000 2400 0 0 0 0 0 0 1800 800 0 1000 0 0 0 0 0 0 0 1600 1600 0 110 0 1 1 1 5 30 0 1 0 0 0 80 0 0 0 1 1 110 0 1 0 1 1 30 0 1 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 27.272728 100 0 100 100 0 0 0 0 0 100 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7200 2600 3000 800 800 0 118 31 82 113 31 27.4336281 83.3333359 0 0 82 80 98.2300873 97.5609741 0 5 4 14.0663652 14.0663652 2724 Yes No No No No No No No Yes No No Yes No Yes No Yes No No No Yes No No No No No No No No No No Yes No Yes No No No No No No No No No Several times a day (730) Yes No Yes Yes No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No Yes No No No No No Yes No No No No Yes No Yes Yes No No No No No No No Yes Yes Yes No Yes Yes Yes No No No No Yes No No No No No Yes No No No No No Yes No No No No No No No Yes No No No No No No No Yes No No No No No No 51 to 100 51 to 100 31 to 40 11 to 20 11 to 20 Have not spent anything Have not spent anything Have not spent anything Less often (6) Most days (365) Most days (365) 501 to 1000 1 to 10 501 to 1000 501 to 1000 None None None 1 to 10 1% to 24% 501 to 1000 100% 100% 1001+ 1 to 10 1 to 10 1 to 10 Likely (3) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Unlikely (2) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Have not spent anything Have not spent anything Have not spent anything About once a month (12) 2-3 times a week (130) 1 to 10 1 to 10 1 to 10 1 to 10 1 to 10 100% 1% to 24% 1 to 10 1% to 24% 100% Have not spent anything Have not spent anything Have not spent anything Every 2-3 weeks (30) 1 to 10 1 to 10 1 to 10 1 to 10 100% 25% to 49% None None 100% 1 to 10 1 to 10 1 to 10 Have not spent anything Have not spent anything Have not spent anything Have not spent anything Have not spent anything Less often (6) 1 to 10 1 to 10 1 to 10 None None None None None None 1 to 10 100% 100% Likely (3) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very Unlikely (1) Very likely (4) Likely (3) Likely (3) Unlikely (2) Unlikely (2) Have not spent anything Have not spent anything Have not spent anything Have not spent anything About once a month (12) 11 to 20 11 to 20 11 to 20 None None None None 11 to 20 100% 100% 1 to 10 1 to 10 Have not spent anything 1 to 10 None 1 to 10 51 to 100 11 to 20 Have not spent anything Have not spent anything 1 to 10 51 to 100 501 to 1000 1 to 10 501 to 1000 501 to 1000 11 to 20 1% to 24% 1 to 10 1% to 24% 11 to 20 1% to 24% 501 to 1000 100% 501 to 1000 100% 1 to 10 1 to 10 Neither agree nor disagree (0) Strongly disagree (-4) Strongly agree (4) Slightly disagree (-2) Strongly agree (4) Slightly disagree (-2) Strongly disagree (-4) Nei